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