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