pub enum LoadingError {
LibraryNotFound {
descr: String,
},
SymbolNotFound {
symbol: &'static str,
},
}
Expand description
Error that can happen while loading the shared library.
Variants§
Trait Implementations§
Source§impl Clone for LoadingError
impl Clone for LoadingError
Source§fn clone(&self) -> LoadingError
fn clone(&self) -> LoadingError
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for LoadingError
impl RefUnwindSafe for LoadingError
impl Send for LoadingError
impl Sync for LoadingError
impl Unpin for LoadingError
impl UnwindSafe for LoadingError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more