Struct timely_communication::logging::CommunicationEvent [] [src]

pub struct CommunicationEvent {
    pub is_send: bool,
    pub comm_channel: usize,
    pub source: usize,
    pub target: usize,
    pub seqno: usize,
}

Fields

true for send event, false for receive event

communication channel id

source worker id

target worker id

sequence number

Trait Implementations

impl Abomonation for CommunicationEvent
[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 CommunicationEvent
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CommunicationEvent
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl From<CommunicationEvent> for CommsEvent
[src]

[src]

Performs the conversion.