Enum vault::Error [] [src]

pub enum Error {
    CursorWrap,
    CursorOutOfBounds,
    FileTooLarge,
    EmptyChar,
    InvalidFileExtension,
    UnexpectedValue,
    UnsupportedVersion,
    UnsupportedChunkVersion,
    IoError(IoError),
    Utf8Error(FromUtf8Error),
    Utf16Error(FromUtf16Error),
}

This type contains the various error messages that can be returned from the library.

Variants

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl From<IoError> for Error
[src]

Performs the conversion.

impl From<FromUtf8Error> for Error
[src]

Performs the conversion.

impl From<FromUtf16Error> for Error
[src]

Performs the conversion.

impl StdError for Error
[src]

A short description of the error. Read more

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

impl Display for Error
[src]

Formats the value using the given formatter. Read more