Trait Event

Source
pub trait Event: 'static {
    // Provided methods
    fn cancellable(&self) -> bool { ... }
    fn cancelled(&self) -> bool { ... }
    fn set_cancelled(&mut self, _cancel: bool) { ... }
    fn cancel(&mut self) { ... }
}

Provided Methods§

Source

fn cancellable(&self) -> bool

Source

fn cancelled(&self) -> bool

Source

fn set_cancelled(&mut self, _cancel: bool)

Source

fn cancel(&mut self)

Implementors§