pub trait ToStatic {
    type Owned: 'static;
    fn to_static(&self) -> Self::Owned;
}

Associated Types

Required methods

Implementations on Foreign Types

Implementors