Struct timely::logging::TimelyProgressEvent[][src]

pub struct TimelyProgressEvent {
    pub is_send: bool,
    pub source: usize,
    pub channel: usize,
    pub seq_no: usize,
    pub addr: Vec<usize>,
    pub messages: Box<dyn ProgressEventTimestampVec>,
    pub internal: Box<dyn ProgressEventTimestampVec>,
}

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.

addr: Vec<usize>

Sequence of nested scope identifiers indicating the path from the root to this instance.

messages: Box<dyn ProgressEventTimestampVec>

List of message updates, containing Target descriptor, timestamp as string, and delta.

internal: Box<dyn ProgressEventTimestampVec>

List of capability updates, containing Source descriptor, timestamp as string, and delta.

Trait Implementations

impl Debug for TimelyProgressEvent[src]

Auto Trait Implementations

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.