pub enum MiscError {
KsAsm,
}
Expand description
Miscellaneous errors.
Variants§
KsAsm
Error returned when a call to ks_asm
fails.
Trait Implementations§
Source§impl Error for MiscError
impl Error for MiscError
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 From<MiscError> for KeystoneError
impl From<MiscError> for KeystoneError
Source§impl Ord for MiscError
impl Ord for MiscError
Source§impl PartialOrd for MiscError
impl PartialOrd for MiscError
impl Copy for MiscError
impl Eq for MiscError
impl StructuralPartialEq for MiscError
Auto Trait Implementations§
impl Freeze for MiscError
impl RefUnwindSafe for MiscError
impl Send for MiscError
impl Sync for MiscError
impl Unpin for MiscError
impl UnwindSafe for MiscError
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