Struct differential_dataflow::logging::MergeShortfall[][src]

pub struct MergeShortfall {
    pub operator: usize,
    pub scale: usize,
    pub shortfall: usize,
}

A merge failed to complete in time.

Fields

Operator identifer.

Which order of magnitude.

By how much were we short.

Trait Implementations

impl Debug for MergeShortfall
[src]

Formats the value using the given formatter. Read more

impl Clone for MergeShortfall
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Abomonation for MergeShortfall
[src]

Write any additional information about &self beyond its binary representation. Read more

Reports the number of further bytes required to entomb self.

Recover any information for &mut self not evident from its binary representation. Read more

impl Ord for MergeShortfall
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl PartialOrd for MergeShortfall
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Eq for MergeShortfall
[src]

impl PartialEq for MergeShortfall
[src]

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

This method tests for !=.

impl From<MergeShortfall> for DifferentialEvent
[src]

Performs the conversion.

Auto Trait Implementations