Enum timely::logging::StartStop [] [src]

pub enum StartStop {
    Start,
    Stop {
        activity: bool,
    },
}

Records the starting and stopping of an operator.

Variants

Operator starts.

Operator stops; did it have any activity?

Fields of Stop

Did the operator perform non-trivial work.

Trait Implementations

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

[src]

Formats the value using the given formatter. Read more

impl Clone for StartStop
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for StartStop
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for StartStop
[src]