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,