pub trait ToStatic {
type Owned: 'static;
// Required method
fn to_static(&self) -> Self::Owned;
}
Expand description
Common trait for objects that can be transformed to a 'static
version of self
pub trait ToStatic {
type Owned: 'static;
// Required method
fn to_static(&self) -> Self::Owned;
}
Common trait for objects that can be transformed to a 'static
version of self