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

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

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

Associated Types

The owned version of the type.

Loading content...

Required methods

Converts self into an owned version of itself.

Loading content...

Implementations on Foreign Types

impl<T: IntoOwned> IntoOwned for Option<T>
[src]

impl<'a, B: 'static + ToOwned + ?Sized> IntoOwned for Cow<'a, B>
[src]

Loading content...

Implementors

impl<'a> IntoOwned for Uri<'a>
[src]

impl<'a> IntoOwned for Absolute<'a>
[src]

impl<'a> IntoOwned for Authority<'a>
[src]

impl<'a> IntoOwned for Error<'a>
[src]

impl<'a> IntoOwned for Origin<'a>
[src]

Loading content...