Enum quantiles::histogram::Error [] [src]

pub enum Error {
    BoundsEmpty,
    BoundsNotSorted,
}

Construction errors

Histogram is a little finicky when you construct it. We signal errors out to the user with this enumeration.

Variants

The bounds given to Histogram are empty. We need bounds.

The bounds given to Histogram are not sorted. They must be.

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter.

impl Copy for Error
[src]

impl Clone for Error
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more