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
is_send: bool
true
if send event, false
if receive event.
channel: usize
Channel identifier
comm_channel: Option<usize>
Communication channel identifier
source: usize
Source worker index.
target: usize
Target worker index.
seq_no: usize
Message sequence number.
length: usize
Number of typed records in the message.
Trait Implementations
impl Abomonation for MessagesEvent
[src]
unsafe fn entomb<W: Write>(&self, _write: &mut W) -> Result<()>
[src]
Write any additional information about &self
beyond its binary representation. Read more
fn extent(&self) -> usize
[src]
Reports the number of further bytes required to entomb self
.
unsafe fn exhume<'a, 'b>(
&'a mut self,
bytes: &'b mut [u8]
) -> Option<&'b mut [u8]>
[src]
&'a mut self,
bytes: &'b mut [u8]
) -> Option<&'b mut [u8]>
Recover any information for &mut self
not evident from its binary representation. Read more
impl Debug for MessagesEvent
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl Clone for MessagesEvent
[src]
fn clone(&self) -> MessagesEvent
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl From<MessagesEvent> for TimelyEvent
[src]
fn from(v: MessagesEvent) -> TimelyEvent
[src]
Performs the conversion.