pub trait MenuItem: Display {
    // Required method
    fn action(&self) -> Box<dyn FnMut() -> bool>;
}

Required Methods§

source

fn action(&self) -> Box<dyn FnMut() -> bool>

Implementors§