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

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

Fields

The symbol.

Trait Implementations

impl Clone for LoadingError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for LoadingError
[src]

Formats the value using the given formatter.