pub struct RegionInterrupt<I: RegionNum> { /* private fields */ }
Expand description
Struct useful for returning the interrupt status
of the ICM. Provides methods for easy parsing of
the region specific RegionNum
Implementations§
Source§impl<I: RegionNum> RegionInterrupt<I>
impl<I: RegionNum> RegionInterrupt<I>
Sourcepub fn get_rsu_int(&self) -> bool
pub fn get_rsu_int(&self) -> bool
Region Status Updated interrupt status
Sourcepub fn get_rec_int(&self) -> bool
pub fn get_rec_int(&self) -> bool
Region End bit Condition Detected interrupt status
Sourcepub fn get_rwc_int(&self) -> bool
pub fn get_rwc_int(&self) -> bool
Region Wrap Condition detected interrupt status
Sourcepub fn get_rbe_int(&self) -> bool
pub fn get_rbe_int(&self) -> bool
Region Bus Error interrupt status
Sourcepub fn get_rdm_int(&self) -> bool
pub fn get_rdm_int(&self) -> bool
Region Digest Mismatch interrupt status
Sourcepub fn get_rhc_int(&self) -> bool
pub fn get_rhc_int(&self) -> bool
Region Hash Completed interrupt status
Auto Trait Implementations§
impl<I> Freeze for RegionInterrupt<I>
impl<I> RefUnwindSafe for RegionInterrupt<I>where
I: RefUnwindSafe,
impl<I> Send for RegionInterrupt<I>where
I: Send,
impl<I> Sync for RegionInterrupt<I>where
I: Sync,
impl<I> Unpin for RegionInterrupt<I>where
I: Unpin,
impl<I> UnwindSafe for RegionInterrupt<I>where
I: UnwindSafe,
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