pub struct MissingRegisterError(/* private fields */);
Expand description
An error to signal that a register is not present
Trait Implementations§
Source§impl Clone for MissingRegisterError
impl Clone for MissingRegisterError
Source§fn clone(&self) -> MissingRegisterError
fn clone(&self) -> MissingRegisterError
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 MissingRegisterError
impl Debug for MissingRegisterError
Source§impl Display for MissingRegisterError
impl Display for MissingRegisterError
Source§impl Error for MissingRegisterError
impl Error for MissingRegisterError
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()
impl Copy for MissingRegisterError
Auto Trait Implementations§
impl Freeze for MissingRegisterError
impl RefUnwindSafe for MissingRegisterError
impl Send for MissingRegisterError
impl Sync for MissingRegisterError
impl Unpin for MissingRegisterError
impl UnwindSafe for MissingRegisterError
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