Enum caf::CafError [] [src]

pub enum CafError {
    Io(IoError),
    FromUtf8(FromUtf8Error),
    NotCaf,
    UnsupportedChunkType(ChunkType),
}

Variants

If the given stream doesn't start with a CAF header.

If the chunk can't be decoded because its type is not supported

Trait Implementations

impl Debug for CafError
[src]

Formats the value using the given formatter.

impl From<IoError> for CafError
[src]

Performs the conversion.

impl From<FromUtf8Error> for CafError
[src]

Performs the conversion.

impl Error for CafError
[src]

A short description of the error. Read more

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

impl Display for CafError
[src]

Formats the value using the given formatter. Read more