pub trait ToSelfContained {
    type SelfContained: 'static;

    fn to_self_contained(&self) -> Self::SelfContained;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors