#[repr(transparent)]pub struct Claim(pub u32);
Expand description
Target claim and complete.
Tuple Fields§
§0: u32
Implementations§
Source§impl Claim
impl Claim
Sourcepub const fn interrupt_id(&self) -> u16
pub const fn interrupt_id(&self) -> u16
On reads, indicating the interrupt source that has being claimed. On writes, indicating the interrupt source that has been handled (completed).
Sourcepub fn set_interrupt_id(&mut self, val: u16)
pub fn set_interrupt_id(&mut self, val: u16)
On reads, indicating the interrupt source that has being claimed. On writes, indicating the interrupt source that has been handled (completed).
Trait Implementations§
impl Copy for Claim
impl Eq for Claim
impl StructuralPartialEq for Claim
Auto Trait Implementations§
impl Freeze for Claim
impl RefUnwindSafe for Claim
impl Send for Claim
impl Sync for Claim
impl Unpin for Claim
impl UnwindSafe for Claim
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