pub trait Monitor {
    type Notify: Notify;

    // Required method
    fn notifier(&self) -> Self::Notify;
}

Required Associated Types§

Required Methods§

source

fn notifier(&self) -> Self::Notify

Implementors§