pub trait OnSmithDelete<IdtyIndex> {
    // Required method
    fn on_smith_delete(idty_index: IdtyIndex, reason: SmithRemovalReason);
}
Expand description

Trait for handling actions when a Smith is deleted.

Required Methods§

source

fn on_smith_delete(idty_index: IdtyIndex, reason: SmithRemovalReason)

Handle the deletion of a smith.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<IdtyIndex> OnSmithDelete<IdtyIndex> for ()

Implementors§