pub trait EventReceiver {
    // Required method
    fn recv(&mut self) -> Option<Event>;
}

Required Methods§

source

fn recv(&mut self) -> Option<Event>

Implementors§