httlib-protos 0.3.2

Protocol Buffers binary format implementation.
Documentation
use std::error;
use std::fmt;
use std::io;
use std::convert;

/// Contains error options that can be encountered while performing the decoding
/// operations.
#[derive(Debug, PartialEq)]
pub enum DecoderError {
    /// Indicates that the decoder received an invalid stream of bytes that can
    /// not be decoded.
    InvalidInput,

    /// Indicates that the decoder encountered an I/O interruption. Interrupted
    /// operations can typically be retried.
    Interrupted,

    /// Indicates that the buffer from which an item was supposed to be decoded
    /// does not contain enough octets to complete the decoding.
    InputUnderflow,

    /// Indicates that the decoder encountered an invalid tag number of a key. 
    /// A tag number must be unique per message and the value can be between `1`
    /// and `2^29 - 1`.
    InvalidTag,
}

impl From<io::Error> for DecoderError {
    fn from(_err: io::Error) -> Self {
        Self::Interrupted
    }
}

impl From<convert::Infallible> for DecoderError { // until solved: https://github.com/rust-lang/rust/issues/64715
    fn from(_: convert::Infallible) -> Self {
        unreachable!()
    }
}

impl fmt::Display for DecoderError {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        match self {
            Self::InvalidInput => write!(fmt, "Invalid byte stream."),
            Self::Interrupted => write!(fmt, "Read operation interrupted."),
            Self::InputUnderflow => write!(fmt, "Not enough bytes."),
            Self::InvalidTag => write!(fmt, "Found tag with invalid number."),
        }
    }
}

impl error::Error for DecoderError {}