Enum shared_library::LoadingError [−][src]
pub enum LoadingError {
LibraryNotFound {
descr: String,
},
SymbolNotFound {
symbol: &'static str,
},
}
Expand description
Error that can happen while loading the shared library.
Variants
LibraryNotFound
Fields
descr: String
SymbolNotFound
Fields
symbol: &'static str
The symbol.
One of the symbols could not be found in the library.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for LoadingError
impl Send for LoadingError
impl Sync for LoadingError
impl Unpin for LoadingError
impl UnwindSafe for LoadingError
Blanket Implementations
Mutably borrows from an owned value. Read more