[][src]Struct erdos::dataflow::callback_builder::TwoReadOneWriteStateful

pub struct TwoReadOneWriteStateful<S0: State, S1: State, W0: Data, S: State> { /* fields omitted */ }

Methods

impl<S0: State, S1: State, W0: Data, S: State> TwoReadOneWriteStateful<S0, S1, W0, S>[src]

pub fn new<R0: Data, R1: Data>(
    rs0: &StatefulReadStream<R0, S0>,
    rs1: &StatefulReadStream<R1, S1>,
    ws0: WriteStream<W0>,
    state: S
) -> Self
[src]

pub fn add_watermark_callback<F: 'static + Fn(&Timestamp, &mut S, &S0, &S1, &mut WriteStream<W0>)>(
    &mut self,
    callback: F
)
[src]

Trait Implementations

impl<S0: State, S1: State, W0: Data, S: State> MultiStreamEventMaker for TwoReadOneWriteStateful<S0, S1, W0, S>[src]

Auto Trait Implementations

impl<S0, S1, W0, S> !RefUnwindSafe for TwoReadOneWriteStateful<S0, S1, W0, S>

impl<S0, S1, W0, S> !Send for TwoReadOneWriteStateful<S0, S1, W0, S>

impl<S0, S1, W0, S> !Sync for TwoReadOneWriteStateful<S0, S1, W0, S>

impl<S0, S1, W0, S> Unpin for TwoReadOneWriteStateful<S0, S1, W0, S>

impl<S0, S1, W0, S> !UnwindSafe for TwoReadOneWriteStateful<S0, S1, W0, S>

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> FromPy<T> for T[src]

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

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