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 debug<T: Debug + 'static>(v: T); fn run(&self) { ... }
fn pop_handler(&self, id: &str) -> Option<Box<Fn(HandlerArg) -> bool>> { ... } }

Required Methods

Provided Methods

Implementors