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: String
SymbolNotFound

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

Fields

symbol: &'static str

The symbol.

Trait Implementations

impl Clone for LoadingError
[src]

fn clone(&self) -> LoadingError

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl Debug for LoadingError
[src]

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

Formats the value using the given formatter.