#[repr(u8)]pub enum IntMaskHwErr {
HW_ERR_MASKED = 0,
HW_ERR_ACTIVE = 1,
}Variants§
HW_ERR_MASKED = 0
Corresponding interrupt of INT_STATUS is masked.
HW_ERR_ACTIVE = 1
Corresponding bit of INT_STATUS is active.
Implementations§
Source§impl IntMaskHwErr
impl IntMaskHwErr
Trait Implementations§
Source§impl Clone for IntMaskHwErr
impl Clone for IntMaskHwErr
Source§fn clone(&self) -> IntMaskHwErr
fn clone(&self) -> IntMaskHwErr
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 IntMaskHwErr
impl Debug for IntMaskHwErr
Source§impl From<IntMaskHwErr> for u8
impl From<IntMaskHwErr> for u8
Source§fn from(val: IntMaskHwErr) -> u8
fn from(val: IntMaskHwErr) -> u8
Converts to this type from the input type.
Source§impl From<u8> for IntMaskHwErr
impl From<u8> for IntMaskHwErr
Source§fn from(val: u8) -> IntMaskHwErr
fn from(val: u8) -> IntMaskHwErr
Converts to this type from the input type.
Source§impl Ord for IntMaskHwErr
impl Ord for IntMaskHwErr
Source§fn cmp(&self, other: &IntMaskHwErr) -> Ordering
fn cmp(&self, other: &IntMaskHwErr) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IntMaskHwErr
impl PartialEq for IntMaskHwErr
Source§impl PartialOrd for IntMaskHwErr
impl PartialOrd for IntMaskHwErr
impl Copy for IntMaskHwErr
impl Eq for IntMaskHwErr
impl StructuralPartialEq for IntMaskHwErr
Auto Trait Implementations§
impl Freeze for IntMaskHwErr
impl RefUnwindSafe for IntMaskHwErr
impl Send for IntMaskHwErr
impl Sync for IntMaskHwErr
impl Unpin for IntMaskHwErr
impl UnwindSafe for IntMaskHwErr
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