Enum bitterlemon::Error [] [src]

pub enum Error {
    TruncatedInput(u8u8),
}

Describes errors that can occur when decoding a Bitterlemon byte stream.

Variants

Input had too few bytes to cleanly decode. The associated values are:

  • number of bits lost due to truncated input;
  • number of bytes still expected from the input.

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter.

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