pub trait HandleLifetime<T> {
    fn created(_t: &T) -> Result<(), DispatchError> { ... }
    fn killed(_t: &T) -> Result<(), DispatchError> { ... }
}
Expand description

A simple, generic one-parameter event notifier/handler.

Provided Methods§

An account was created.

An account was killed.

Implementations on Foreign Types§

Implementors§