Notify

Trait Notify 

Source
pub trait Notify<N>:
    Send
    + Sync
    + Debug
where N: Notification,
{ // Required method fn notify(&self, notification: N) -> Result<()>; }

Required Methods§

Source

fn notify(&self, notification: N) -> Result<()>

Implementors§

Source§

impl<N> Notify<N> for Root<N>
where N: Notification,

Source§

impl<N> Notify<N> for NotifyMock<N>
where N: Notification,

Source§

impl<N, C> Notify<N> for Notifier<N, C>
where N: Notification, C: Connection<Notification = N>,