Enum hdrhistogram::errors::AdditionError [] [src]

pub enum AdditionError {
    OtherAddendValueExceedsRange,
    ResizeFailedUsizeTypeTooSmall,
}

Errors that can occur when adding another histogram.

Variants

The other histogram includes values that do not fit in this histogram's range. Only possible when auto resize is disabled.

The other histogram includes values that would map to indexes in this histogram that are not expressible for usize. Configure this histogram to use fewer significant digits. Only possible when resize is enabled.

Trait Implementations

impl Debug for AdditionError
[src]

[src]

Formats the value using the given formatter.

impl Eq for AdditionError
[src]

impl PartialEq for AdditionError
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Clone for AdditionError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for AdditionError
[src]