pub trait IntoStatic {
    type StaticCon;

    fn make_static(&mut self) -> Option<Self::StaticCon>;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors