Trait UseEvents

Source
pub trait UseEvents: Sealed {
    // Required methods
    fn use_events<F>(&mut self, f: F)
       where F: FnMut(Event) + Send + 'static;
    fn use_local_events<F>(&mut self, f: F)
       where F: FnMut(Event) + Send + 'static;
}

Required Methods§

Source

fn use_events<F>(&mut self, f: F)
where F: FnMut(Event) + Send + 'static,

Source

fn use_local_events<F>(&mut self, f: F)
where F: FnMut(Event) + Send + 'static,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl UseEvents for Hooks<'_, '_>