pub enum MMapInternalErr {
NotInIORange,
AddrAlreadyMapped,
}
Expand description
Error in Simulator::mmap_internal
.
Variants§
NotInIORange
Address specified is not in IO range.
AddrAlreadyMapped
Address specified is already mapped to another internal register or device.
Trait Implementations§
Source§impl Debug for MMapInternalErr
impl Debug for MMapInternalErr
Source§impl Display for MMapInternalErr
impl Display for MMapInternalErr
Source§impl Error for MMapInternalErr
impl Error for MMapInternalErr
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 MMapInternalErr
impl RefUnwindSafe for MMapInternalErr
impl Send for MMapInternalErr
impl Sync for MMapInternalErr
impl Unpin for MMapInternalErr
impl UnwindSafe for MMapInternalErr
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