pub trait HandleDidRemoval {
    // Required method
    fn on_did_removal(did: Did) -> Weight;
}

Required Methods§

source

fn on_did_removal(did: Did) -> Weight

Implementations on Foreign Types§

source§

impl<A, B, C> HandleDidRemoval for (A, B, C)where A: HandleDidRemoval, B: HandleDidRemoval, C: HandleDidRemoval,

source§

fn on_did_removal(did: Did) -> Weight

source§

impl<A, B> HandleDidRemoval for (A, B)where A: HandleDidRemoval, B: HandleDidRemoval,

source§

fn on_did_removal(did: Did) -> Weight

source§

impl<A, B, C, D> HandleDidRemoval for (A, B, C, D)where A: HandleDidRemoval, B: HandleDidRemoval, C: HandleDidRemoval, D: HandleDidRemoval,

source§

fn on_did_removal(did: Did) -> Weight

source§

impl HandleDidRemoval for ()

source§

fn on_did_removal(_: Did) -> Weight

source§

impl<A, B, C, D, E> HandleDidRemoval for (A, B, C, D, E)where A: HandleDidRemoval, B: HandleDidRemoval, C: HandleDidRemoval, D: HandleDidRemoval, E: HandleDidRemoval,

source§

fn on_did_removal(did: Did) -> Weight

Implementors§

source§

impl<T> HandleDidRemoval for Pallet<T>where T: Config,