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.
Required Associated Types
Required Methods
fn into_owned(self) -> Self::Owned
fn into_owned(self) -> Self::Owned
Converts self into an owned version of itself.