Struct timely::logging::ProgressEvent
[−]
[src]
pub struct ProgressEvent { pub is_send: bool, pub source: usize, pub comm_channel: Option<usize>, pub seq_no: usize, pub addr: Vec<usize>, pub messages: Vec<(usize, usize, String, i64)>, pub internal: Vec<(usize, usize, String, i64)>, }
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.
comm_channel: Option<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: Vec<(usize, usize, String, i64)>
List of message updates, containing Target descriptor, timestamp as string, and delta.
internal: Vec<(usize, usize, String, i64)>
List of capability updates, containing Source descriptor, timestamp as string, and delta.
Trait Implementations
impl Abomonation for ProgressEvent
[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 ProgressEvent
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl Clone for ProgressEvent
[src]
fn clone(&self) -> ProgressEvent
[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<ProgressEvent> for TimelyEvent
[src]
fn from(v: ProgressEvent) -> TimelyEvent
[src]
Performs the conversion.