pub trait ToStatic {
    type Owned: 'static;

    fn to_static(&self) -> Self::Owned;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors