Struct cfrp::primitives::channel::Channel [] [src]

pub struct Channel<A> where
    A: 'static + Send + Clone
{ /* fields omitted */ }

Methods

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

Trait Implementations

impl<A> Signal<A> for Channel<A> where
    A: 'static + Send + Clone
[src]

impl<A> SignalExt<A> for Channel<A> where
    A: 'static + Send + Clone
[src]

Transform in input signal into an output signal Read more

Combine two signals into an output signal Read more

Merge data from a signal into an accumulator and return a signal with the accumulator's value Read more

Sugar for Builder::add Read more

Sugar for Builder::async Read more

Alias of lift

Takes two input signals and returns a signal containing 2-tuples of elements from the input signals. Read more

Same as Iterator::enumerate. Read more

Filter an input stream by a predicate function F. Read more

Pass each value in a signal to F before sending it to an output signal. Read more