Enum emacs::error::ErrorKind [] [src]

pub enum ErrorKind {
    Signal {
        symbol: Value,
        data: Value,
    },
    Throw {
        tag: Value,
        value: Value,
    },
    UserPtrHasWrongType {
        expected: &'static str,
    },
    UnknownUserPtr {
        expected: &'static str,
    },
    IO {
        error: Error,
    },
    Other {
        error: Box<Error>,
    },
    CoreFnMissing(String),
}

Variants

Fields of Signal

Fields of Throw

Fields of UserPtrHasWrongType

Fields of UnknownUserPtr

Fields of IO

Fields of Other

Trait Implementations

impl Debug for ErrorKind
[src]

[src]

Formats the value using the given formatter.