Trait rocket_http::ext::IntoOwned[][src]

pub trait IntoOwned {
    type Owned: 'static;
    fn into_owned(self) -> Self::Owned;
}
Expand description

Trait implemented by types that can be converted into owned versions of themselves.

Associated Types

The owned version of the type.

Required methods

Converts self into an owned version of itself.

Implementations on Foreign Types

Implementors