[][src]Struct omnistreams::RangeProducer

pub struct RangeProducer { /* fields omitted */ }

Methods

impl RangeProducer[src]

pub fn new(start: i64, stop: Option<i64>) -> RangeProducer[src]

Trait Implementations

impl Producer<i64> for RangeProducer[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 Streamer for RangeProducer[src]

impl Debug for RangeProducer[src]

Auto Trait Implementations

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