pub struct ArcLibloadingError(/* private fields */);Expand description
A cloneable wrapper around libloading::Error.
Trait Implementations§
Source§impl Clone for ArcLibloadingError
impl Clone for ArcLibloadingError
Source§fn clone(&self) -> ArcLibloadingError
fn clone(&self) -> ArcLibloadingError
Returns a duplicate 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 moreSource§impl Debug for ArcLibloadingError
impl Debug for ArcLibloadingError
Source§impl Display for ArcLibloadingError
impl Display for ArcLibloadingError
Source§impl Error for ArcLibloadingError
impl Error for ArcLibloadingError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for ArcLibloadingError
impl !RefUnwindSafe for ArcLibloadingError
impl Send for ArcLibloadingError
impl Sync for ArcLibloadingError
impl Unpin for ArcLibloadingError
impl UnsafeUnpin for ArcLibloadingError
impl !UnwindSafe for ArcLibloadingError
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