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