Enum hdrhistogram::serialization::V2SerializeError [] [src]

pub enum V2SerializeError {
    CountNotSerializable,
    UsizeTypeTooSmall,
    IoError(ErrorKind),
}

Errors that occur during serialization.

Variants

A count above i64::max_value() cannot be zig-zag encoded, and therefore cannot be serialized.

Internal calculations cannot be represented in usize. Use smaller histograms or beefier hardware.

An i/o operation failed.

Trait Implementations

impl Debug for V2SerializeError
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for V2SerializeError
[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 V2SerializeError
[src]

impl Clone for V2SerializeError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for V2SerializeError
[src]

impl From<Error> for V2SerializeError
[src]

[src]

Performs the conversion.

Auto Trait Implementations