Struct timely::logging::GuardedMessageEvent
[−]
[src]
pub struct GuardedMessageEvent { pub is_start: bool, }
Application-defined code start or stop
Fields
is_start: bool
True when activity begins, false when it stops
Trait Implementations
impl Abomonation for GuardedMessageEvent
[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 GuardedMessageEvent
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl Clone for GuardedMessageEvent
[src]
fn clone(&self) -> GuardedMessageEvent
[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<GuardedMessageEvent> for TimelyEvent
[src]
fn from(v: GuardedMessageEvent) -> TimelyEvent
[src]
Performs the conversion.