pub trait TokenWrapper<T>where
Self: Sized,
T: TokenTrait,{
// Required method
fn wrap(token: T, context: Context) -> Self;
}Expand description
Trait for anything that wants to automatically wrap a Token.
Required Methods§
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.