pub trait BackendAppRunner<E> {
    fn run(&mut self, app: Rc<RefCell<App>>) -> Result<(), E>;
}

Required Methods

Implementors