Struct timely::logging::MessagesEvent [] [src]

pub struct MessagesEvent {
    pub is_send: bool,
    pub channel: usize,
    pub comm_channel: Option<usize>,
    pub source: usize,
    pub target: usize,
    pub seq_no: usize,
    pub length: usize,
}

Message send or receive event

Fields

true if send event, false if receive event.

Channel identifier

Communication channel identifier

Source worker index.

Target worker index.

Message sequence number.

Number of typed records in the message.

Trait Implementations

impl Abomonation for MessagesEvent
[src]

[src]

Write any additional information about &self beyond its binary representation. Read more

[src]

Reports the number of further bytes required to entomb self.

[src]

Recover any information for &mut self not evident from its binary representation. Read more

impl Debug for MessagesEvent
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for MessagesEvent
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl From<MessagesEvent> for TimelyEvent
[src]

[src]

Performs the conversion.