Enum shared_library::LoadingError [] [src]

pub enum LoadingError {
    LibraryNotFound {
        descr: String,
    },
    SymbolNotFound {
        symbol: &'static str,
    },
}

Error that can happen while loading the shared library.

Variants

LibraryNotFound

Fields

descr
SymbolNotFound

One of the symbols could not be found in the library.

Fields

symbol

The symbol.

Trait Implementations

Derived Implementations

impl Clone for LoadingError

fn clone(&self) -> LoadingError

1.0.0fn clone_from(&mut self, source: &Self)

impl Debug for LoadingError

fn fmt(&self, __arg_0: &mut Formatter) -> Result