pub trait WithLifetime:
Send
+ Sync
+ 'static {
type Of<'a>: Send + Sync;
}Expand description
A utility 'static compatible trait adding a lifetime to a type.
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.