Trait TokenWrapper

Source
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§

Source

fn wrap(token: T, context: Context) -> Self

Function that wraps the Token and the Context and returns itself.

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.

Implementors§

Source§

impl<T> TokenWrapper<T> for T
where T: TokenTrait,