Struct timely::dataflow::operators::capture::event::binary::EventReader[][src]

pub struct EventReader<T, D, R: Read> { /* fields omitted */ }

A Wrapper for R: Read implementing EventIterator<T, D>.

Implementations

impl<T, D, R: Read> EventReader<T, D, R>[src]

pub fn new(r: R) -> EventReader<T, D, R>[src]

Allocates a new EventReader wrapping a supplied reader.

Trait Implementations

impl<T: Abomonation, D: Abomonation, R: Read> EventIterator<T, D> for EventReader<T, D, R>[src]

Auto Trait Implementations

impl<T, D, R> RefUnwindSafe for EventReader<T, D, R> where
    D: RefUnwindSafe,
    R: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, D, R> Send for EventReader<T, D, R> where
    D: Send,
    R: Send,
    T: Send

impl<T, D, R> Sync for EventReader<T, D, R> where
    D: Sync,
    R: Sync,
    T: Sync

impl<T, D, R> Unpin for EventReader<T, D, R> where
    D: Unpin,
    R: Unpin,
    T: Unpin

impl<T, D, R> UnwindSafe for EventReader<T, D, R> where
    D: UnwindSafe,
    R: UnwindSafe,
    T: UnwindSafe

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.