Enum inkwell::support::LoadLibraryError
source · pub enum LoadLibraryError {
UnicodeError,
LoadingError,
}
Expand description
Possible errors that can occur when loading a library
Variants§
UnicodeError
The given path could not be converted to a &str
LoadingError
The given path could not be loaded as a library
Trait Implementations§
source§impl Clone for LoadLibraryError
impl Clone for LoadLibraryError
source§fn clone(&self) -> LoadLibraryError
fn clone(&self) -> LoadLibraryError
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 moresource§impl Debug for LoadLibraryError
impl Debug for LoadLibraryError
source§impl Display for LoadLibraryError
impl Display for LoadLibraryError
source§impl Error for LoadLibraryError
impl Error for LoadLibraryError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
source§impl PartialEq for LoadLibraryError
impl PartialEq for LoadLibraryError
source§fn eq(&self, other: &LoadLibraryError) -> bool
fn eq(&self, other: &LoadLibraryError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for LoadLibraryError
impl Eq for LoadLibraryError
impl StructuralEq for LoadLibraryError
impl StructuralPartialEq for LoadLibraryError
Auto Trait Implementations§
impl RefUnwindSafe for LoadLibraryError
impl Send for LoadLibraryError
impl Sync for LoadLibraryError
impl Unpin for LoadLibraryError
impl UnwindSafe for LoadLibraryError
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