pub trait HandleNotifyAlertChanged {
    // Required method
    fn handle_notify_alert_changed(
        &mut self,
        fn_: NodeNotifyAlertChangedFn
    ) -> Box<dyn Handler>;
}

Required Methods§

source

fn handle_notify_alert_changed( &mut self, fn_: NodeNotifyAlertChangedFn ) -> Box<dyn Handler>

| Register handler for notify alert messages. |

Implementors§