Enum hdrhistogram::serialization::V2DeflateSerializeError [] [src]

pub enum V2DeflateSerializeError {
    InternalSerializationError(V2SerializeError),
    IoError(ErrorKind),
}

Errors that occur during serialization.

Variants

The underlying serialization failed

An i/o operation failed.

Trait Implementations

impl Debug for V2DeflateSerializeError
[src]

[src]

Formats the value using the given formatter. Read more

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

impl Clone for V2DeflateSerializeError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for V2DeflateSerializeError
[src]

impl From<Error> for V2DeflateSerializeError
[src]

[src]

Performs the conversion.

Auto Trait Implementations