Trait squark::Runtime[][src]

pub trait Runtime<A: App>: Clone + 'static {
    fn get_env<'a>(&'a self) -> &'a Env<A>;
fn handle_diff(&self, diff: Diff);
fn schedule_render(&self); fn run(&self) { ... }
fn pop_handler(&self, id: &str) -> Option<Box<Fn(HandlerArg)>> { ... } }

Required Methods

Provided Methods

Implementors