[][src]Struct omnistreams::MapProducer

pub struct MapProducer<B> { /* fields omitted */ }

Trait Implementations

impl<B> Producer<B> for MapProducer<B> where
    B: Send + 'static, 
[src]

fn pipe_into<C>(self, consumer: C) where
    Self: Sized + Send + 'static,
    C: Consumer<T> + Sized + Send + 'static,
    T: Send + 'static, 
[src]

fn pipe_through<C, U>(self, conduit: C) -> C::ConcreteProducer where
    Self: Sized + Send + 'static,
    C: Conduit<T, U> + Sized + Send + 'static,
    T: Send + 'static,
    U: Send + 'static,
    C::ConcreteConsumer: Send
[src]

fn events(&mut self) -> ProducerEventEmitter<T>[src]

impl<B> Streamer for MapProducer<B>[src]

impl<B: Debug> Debug for MapProducer<B>[src]

Auto Trait Implementations

impl<B> Send for MapProducer<B> where
    B: Send

impl<B> Sync for MapProducer<B> where
    B: Send

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T