pub trait TokenSpecification {
    type Actor;
    type Client;
    type Context;
    type Data;

    fn create(&self) -> Self;
}

Required Associated Types

Required Methods

Implementors