Trait noders::node::Loop[][src]

pub trait Loop<A> where
    A: 'static + Loop<A>,
    Self: 'static, 
{ fn core(&self) -> &Core;
fn as_rc(&self) -> Rc<RefCell<A>>;
fn cb<X, F>(&self, f: F) -> Callback<X>
    where
        X: 'static + Send,
        F: 'static + Fn(&mut A, X)
; fn module(&self) -> ModuleCfg { ... }
fn with_scope<X>(&self, x: X, f: fn(_: &mut SubScope<A, X>)) { ... } }

Required Methods

Provided Methods

Implementors