pub trait Static: 'static { }Expand description
Safe trait that 'static types can implement to get a free blanket impl
of the Transient trait.
Implementing this trait results in a Transient implementation using Self
as the Static type and () as the Transience, which is almost certainly
what a 'static type would want.