Trait BusyHandler

Source
pub trait BusyHandler {
    // Required method
    fn handle_busy(&mut self) -> bool;
}

Required Methods§

Source

fn handle_busy(&mut self) -> bool

Implementors§

Source§

impl<F> BusyHandler for F
where F: FnMut() -> bool,