Enum bytevec::errors::ByteVecError [] [src]

pub enum ByteVecError {
    StringDecodeUtf8Error(Utf8Error),
    BadSizeDecodeError {
        expected: BVExpectedSize,
        actual: usize,
    },
    OverflowError,
}

Variants

Fields of BadSizeDecodeError

Trait Implementations

impl Debug for ByteVecError
[src]

Formats the value using the given formatter.

impl Clone for ByteVecError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for ByteVecError
[src]

Formats the value using the given formatter. Read more

impl Error for ByteVecError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl From<Utf8Error> for ByteVecError
[src]

Performs the conversion.