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

Fields of LibraryNotFound

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

Fields of SymbolNotFound

The symbol.

Trait Implementations

impl Debug for LoadingError
[src]

Formats the value using the given formatter. Read more

impl Clone for LoadingError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations