pub struct TimelyProgressEvent<T> {
pub is_send: bool,
pub source: usize,
pub channel: usize,
pub seq_no: usize,
pub identifier: usize,
pub messages: Vec<(usize, usize, T, i64)>,
pub internal: Vec<(usize, usize, T, i64)>,
}
Expand description
Send or receive of progress information.
Fields§
§is_send: bool
true
if the event is a send, and false
if it is a receive.
source: usize
Source worker index.
channel: usize
Communication channel identifier
seq_no: usize
Message sequence number.
identifier: usize
Global identifier of the operator reporting progress.
messages: Vec<(usize, usize, T, i64)>
List of message updates, containing Target descriptor, timestamp as string, and delta.
internal: Vec<(usize, usize, T, i64)>
List of capability updates, containing Source descriptor, timestamp as string, and delta.
Trait Implementations§
Source§impl<T: Clone> Clone for TimelyProgressEvent<T>
impl<T: Clone> Clone for TimelyProgressEvent<T>
Source§fn clone(&self) -> TimelyProgressEvent<T>
fn clone(&self) -> TimelyProgressEvent<T>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<T> Freeze for TimelyProgressEvent<T>
impl<T> RefUnwindSafe for TimelyProgressEvent<T>where
T: RefUnwindSafe,
impl<T> Send for TimelyProgressEvent<T>where
T: Send,
impl<T> Sync for TimelyProgressEvent<T>where
T: Sync,
impl<T> Unpin for TimelyProgressEvent<T>where
T: Unpin,
impl<T> UnwindSafe for TimelyProgressEvent<T>where
T: UnwindSafe,
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