Struct cfrp::primitives::fork::Fork [] [src]

pub struct Fork<A> where A: 'static + Send {
    // some fields omitted
}

Methods

impl<A> Fork<A> where A: 'static + Clone + Send
[src]

fn new(parent: Box<Signal<A>>, sink_txs: Arc<Mutex<Vec<SyncSender<Event<A>>>>>) -> Fork<A>

Trait Implementations

impl<A> Run for Fork<A> where A: 'static + Clone + Send
[src]

fn run(self: Box<Self>)