Trait BackendAppRunner

Source
pub trait BackendAppRunner<'a, 'b, E> {
    // Required method
    fn run(&mut self, app: Rc<RefCell<App<'a, 'b>>>) -> Result<(), E>;
}

Required Methods§

Source

fn run(&mut self, app: Rc<RefCell<App<'a, 'b>>>) -> Result<(), E>

Implementors§

Source§

impl<'a, 'b> BackendAppRunner<'a, 'b, ()> for SyncAppRunner