Struct timely::progress::operate::SharedProgress
source · 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>>,
}
Expand description
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.
Implementations§
Trait Implementations§
Auto Trait Implementations§
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more