Enum neko::dynamic::library::LibraryError
[−]
[src]
pub enum LibraryError {
EmptyEvent,
BadGet(Error),
BadDyLib(String),
}The enum LibraryError defines the possible errors
from constructor Library.
Variants
EmptyEventCan't found any methods.
BadGet(Error)Can't get the symbole from dynamic library.
BadDyLib(String)DynamicLibrary as occured an error.
Trait Implementations
impl Debug for LibraryError[src]
impl Display for LibraryError[src]
fn fmt(&self, f: &mut Formatter) -> Result
The function fmt formats the value using
the given formatter.
impl Error for LibraryError[src]
fn description(&self) -> &str
The function description returns a short description of
the error.
fn cause(&self) -> Option<&Error>
The function cause returns the lower-level cause of
this error if any.