Enum neko::prelude::LibraryError [] [src]

pub enum LibraryError {
    EmptyEvent,
    BadGet(Error),
    BadDyLib(String),
}

The enum LibraryError defines the possible errors from constructor Library.

Variants

Can't found any methods.

Can't get the symbole from dynamic library.

DynamicLibrary as occured an error.

Trait Implementations

impl Debug for LibraryError
[src]

Formats the value using the given formatter.

impl Display for LibraryError
[src]

The function fmt formats the value using the given formatter.

impl Error for LibraryError
[src]

The function description returns a short description of the error.

The function cause returns the lower-level cause of this error if any.