Enum prototty_unix::Error [] [src]

pub enum Error {
    IoError(IoError),
    MissingCap(String),
    UnrecognizedEscapeSequence(Vec<u8>),
    Utf8Error(Utf8Error),
    NoSuchMenuPlace(String),
    TermError(TermError),
    ParamError(ParamError),
}

Variants

Methods

impl Error
[src]

[src]

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter.

impl From<IoError> for Error
[src]

[src]

Performs the conversion.

impl From<Utf8Error> for Error
[src]

[src]

Performs the conversion.

impl From<TermError> for Error
[src]

[src]

Performs the conversion.

impl From<ParamError> for Error
[src]

[src]

Performs the conversion.