pub trait Config: Config + Limits {
type OnDidRemoval: HandleDidRemoval;
type Event: From<Event<Self>> + IsType<<Self as Config>::Event> + Into<<Self as Config>::Event>;
}
Expand description
The module’s configuration trait.
Required Associated Types§
sourcetype OnDidRemoval: HandleDidRemoval
type OnDidRemoval: HandleDidRemoval
The handler of a DID
removal.