Enum dlib::DlError[][src]

pub enum DlError {
    CantOpen(LibLoadingError),
    MissingSymbol(&'static str),
}

An error generated when failing to load a library

Variants

CantOpen(LibLoadingError)

The requested library would not be opened

Includes the error reported by libloading when trying to open the library.

MissingSymbol(&'static str)

Some required symbol was missing in the library

Trait Implementations

impl Debug for DlError[src]

impl Display for DlError[src]

impl Error for DlError[src]

Auto Trait Implementations

impl !RefUnwindSafe for DlError

impl Send for DlError

impl Sync for DlError

impl Unpin for DlError

impl !UnwindSafe for DlError

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.