[][src]Struct timely::progress::operate::SharedProgress

pub struct SharedProgress<T: Timestamp> {
    pub frontiers: Vec<ChangeBatch<T>>,
    pub consumeds: Vec<ChangeBatch<T>>,
    pub internals: Vec<ChangeBatch<T>>,
    pub produceds: Vec<ChangeBatch<T>>,
}

Progress information shared between parent and child.

Fields

frontiers: Vec<ChangeBatch<T>>

Frontier capability changes reported by the parent scope.

consumeds: Vec<ChangeBatch<T>>

Consumed message changes reported by the child operator.

internals: Vec<ChangeBatch<T>>

Internal capability changes reported by the child operator.

produceds: Vec<ChangeBatch<T>>

Produced message changes reported by the child operator.

Methods

impl<T: Timestamp> SharedProgress<T>[src]

pub fn new(inputs: usize, outputs: usize) -> Self[src]

Allocates a new shared progress structure.

Trait Implementations

impl<T: Debug + Timestamp> Debug for SharedProgress<T>[src]

Auto Trait Implementations

impl<T> Send for SharedProgress<T>

impl<T> Sync for SharedProgress<T>

impl<T> Unpin for SharedProgress<T> where
    T: Unpin

impl<T> UnwindSafe for SharedProgress<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for SharedProgress<T> where
    T: RefUnwindSafe

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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