Enum timely::logging::StartStop
[−]
[src]
pub enum StartStop { Start, Stop { activity: bool, }, }
Records the starting and stopping of an operator.
Variants
Start
Operator starts.
Stop
Operator stops; did it have any activity?
Fields of Stop
activity: bool | Did the operator perform non-trivial work. |
Trait Implementations
impl Abomonation for StartStop
[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 StartStop
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl Clone for StartStop
[src]
fn clone(&self) -> StartStop
[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 PartialEq for StartStop
[src]
fn eq(&self, __arg_0: &StartStop) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &StartStop) -> bool
[src]
This method tests for !=
.