[−][src]Trait rocket_http::ext::IntoOwned
Trait implemented by types that can be converted into owned versions of themselves.
Associated Types
type Owned: 'static
The owned version of the type.
Required methods
fn into_owned(self) -> Self::Owned
Converts self
into an owned version of itself.
Implementations on Foreign Types
impl<T: IntoOwned> IntoOwned for Option<T>
[src]
impl<T: IntoOwned> IntoOwned for Option<T>
impl<'a, B: 'static + ToOwned + ?Sized> IntoOwned for Cow<'a, B>
[src]
impl<'a, B: 'static + ToOwned + ?Sized> IntoOwned for Cow<'a, B>
type Owned = Cow<'static, B>
fn into_owned(self) -> Self::Owned
[src]
fn into_owned(self) -> Self::Owned
Implementors
impl<'a> IntoOwned for Uri<'a>
[src]
impl<'a> IntoOwned for Uri<'a>
type Owned = Uri<'static>
fn into_owned(self) -> Uri<'static>
[src]
fn into_owned(self) -> Uri<'static>
impl<'a> IntoOwned for Absolute<'a>
[src]
impl<'a> IntoOwned for Absolute<'a>
type Owned = Absolute<'static>
fn into_owned(self) -> Self::Owned
[src]
fn into_owned(self) -> Self::Owned
impl<'a> IntoOwned for Authority<'a>
[src]
impl<'a> IntoOwned for Authority<'a>
type Owned = Authority<'static>
fn into_owned(self) -> Authority<'static>
[src]
fn into_owned(self) -> Authority<'static>
impl<'a> IntoOwned for Error<'a>
[src]
impl<'a> IntoOwned for Error<'a>
type Owned = Error<'static>
fn into_owned(self) -> Self::Owned
[src]
fn into_owned(self) -> Self::Owned
impl<'a> IntoOwned for Origin<'a>
[src]
impl<'a> IntoOwned for Origin<'a>
type Owned = Origin<'static>
fn into_owned(self) -> Origin<'static>
[src]
fn into_owned(self) -> Origin<'static>