Trait parsell::ToStatic
[−]
[src]
pub trait ToStatic {
type Static;
}A trait for data which can be saved to and restored from long-lived state.
The canonical example of this trait is Cow<'a,T> which can be saved to
and restored from Cow<'static,T> when T is static.