#[repr(u8)]pub enum Emc1 {
DO_NOTHING = 0,
CLEAR = 1,
SET = 2,
TOGGLE = 3,
}Variants§
DO_NOTHING = 0
Do Nothing.
CLEAR = 1
Clear. Clear the corresponding External Match bit/output to 0 (MAT1 pin is LOW if pinned out).
SET = 2
Set. Set the corresponding External Match bit/output to 1 (MAT1 pin is HIGH if pinned out).
TOGGLE = 3
Toggle. Toggle the corresponding External Match bit/output.
Implementations§
Trait Implementations§
Source§impl Ord for Emc1
impl Ord for Emc1
Source§impl PartialOrd for Emc1
impl PartialOrd for Emc1
impl Copy for Emc1
impl Eq for Emc1
impl StructuralPartialEq for Emc1
Auto Trait Implementations§
impl Freeze for Emc1
impl RefUnwindSafe for Emc1
impl Send for Emc1
impl Sync for Emc1
impl Unpin for Emc1
impl UnwindSafe for Emc1
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