pub trait IntoStatic {
type StaticCon;
// Required method
fn make_static(&mut self) -> Option<Self::StaticCon>;
}
pub trait IntoStatic {
type StaticCon;
// Required method
fn make_static(&mut self) -> Option<Self::StaticCon>;
}