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

pub struct EventWriter<T, D, W: Write> { /* fields omitted */ }

A wrapper for W: Write implementing EventPusher<T, D>.

Implementations

impl<T, D, W: Write> EventWriter<T, D, W>[src]

pub fn new(w: W) -> EventWriter<T, D, W>[src]

Allocates a new EventWriter wrapping a supplied writer.

Trait Implementations

impl<T: Abomonation, D: Abomonation, W: Write> EventPusher<T, D> for EventWriter<T, D, W>[src]

Auto Trait Implementations

impl<T, D, W> RefUnwindSafe for EventWriter<T, D, W> where
    D: RefUnwindSafe,
    T: RefUnwindSafe,
    W: RefUnwindSafe

impl<T, D, W> Send for EventWriter<T, D, W> where
    D: Send,
    T: Send,
    W: Send

impl<T, D, W> Sync for EventWriter<T, D, W> where
    D: Sync,
    T: Sync,
    W: Sync

impl<T, D, W> Unpin for EventWriter<T, D, W> where
    D: Unpin,
    T: Unpin,
    W: Unpin

impl<T, D, W> UnwindSafe for EventWriter<T, D, W> where
    D: UnwindSafe,
    T: UnwindSafe,
    W: 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.