#[repr(transparent)]pub struct Pps(pub u32);
Expand description
Preempted priority stack.
Tuple Fields§
§0: u32
Implementations§
Source§impl Pps
impl Pps
Sourcepub const fn priority_preempted(&self) -> u32
pub const fn priority_preempted(&self) -> u32
Each bit indicates if the corresponding priority level has been preempted by a higher-priority interrupt.
Sourcepub fn set_priority_preempted(&mut self, val: u32)
pub fn set_priority_preempted(&mut self, val: u32)
Each bit indicates if the corresponding priority level has been preempted by a higher-priority interrupt.
Trait Implementations§
impl Copy for Pps
impl Eq for Pps
impl StructuralPartialEq for Pps
Auto Trait Implementations§
impl Freeze for Pps
impl RefUnwindSafe for Pps
impl Send for Pps
impl Sync for Pps
impl Unpin for Pps
impl UnwindSafe for Pps
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