pub enum DlError {
NotFound,
Malformed,
InvalidHandle,
Oom,
}Variants§
NotFound
Failed to locate the requested DSO.
Malformed
The DSO is malformed somehow.
InvalidHandle
Invalid DSO handle.
Oom
Out of memory.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DlError
impl RefUnwindSafe for DlError
impl Send for DlError
impl Sync for DlError
impl Unpin for DlError
impl UnsafeUnpin for DlError
impl UnwindSafe for DlError
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