pub trait Config: Config + Config {
    type Event: From<Event> + IsType<Self::Event> + Into<Self::Event>;
}
Expand description

The module’s configuration trait.

Required Associated Types§

source

type Event: From<Event> + IsType<Self::Event> + Into<Self::Event>

The overarching event type.

Implementors§