#[repr(u8)]pub enum Comb {
OR = 0,
AND = 1,
}Variants§
OR = 0
Or. OR functionality: A grouped interrupt is generated when any one of the enabled inputs is active (based on its programmed polarity).
AND = 1
And. AND functionality: An interrupt is generated when all enabled bits are active (based on their programmed polarity).
Implementations§
Trait Implementations§
Source§impl Ord for Comb
impl Ord for Comb
Source§impl PartialOrd for Comb
impl PartialOrd for Comb
impl Copy for Comb
impl Eq for Comb
impl StructuralPartialEq for Comb
Auto Trait Implementations§
impl Freeze for Comb
impl RefUnwindSafe for Comb
impl Send for Comb
impl Sync for Comb
impl Unpin for Comb
impl UnwindSafe for Comb
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