pub trait ToSelfContained {
type SelfContained: 'static;
// Required method
fn to_self_contained(&self) -> Self::SelfContained;
}pub trait ToSelfContained {
type SelfContained: 'static;
// Required method
fn to_self_contained(&self) -> Self::SelfContained;
}