pub trait IntoOwned: Sized + Deref {
    type Owned: Borrow<<Self as Deref>::Target>;

    fn into_owned(self) -> Self::Owned;
}
Expand description

Pointer types that can be converted into an owned type

Required Associated Types

The type the pointer can be converted into

Required Methods

Convert into owned type

Implementations on Foreign Types

Implementors