pub enum DllOverrideError {
InvalidLoadOrder {
state: DllLoadOrder,
char: char,
},
InvalldOverride,
}Available on non-Windows only.
Variants§
Trait Implementations§
Source§impl Clone for DllOverrideError
impl Clone for DllOverrideError
Source§fn clone(&self) -> DllOverrideError
fn clone(&self) -> DllOverrideError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DllOverrideError
impl Debug for DllOverrideError
Source§impl Display for DllOverrideError
impl Display for DllOverrideError
impl Eq for DllOverrideError
Source§impl Error for DllOverrideError
impl Error for DllOverrideError
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()
Source§impl PartialEq for DllOverrideError
impl PartialEq for DllOverrideError
impl StructuralPartialEq for DllOverrideError
Auto Trait Implementations§
impl Freeze for DllOverrideError
impl RefUnwindSafe for DllOverrideError
impl Send for DllOverrideError
impl Sync for DllOverrideError
impl Unpin for DllOverrideError
impl UnsafeUnpin for DllOverrideError
impl UnwindSafe for DllOverrideError
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