pub trait PointerIntoOwned: Sized {
    type Owned;

    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