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
LibraryNotFoundFields
descr: String |
SymbolNotFoundOne 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