#[repr(u8)]pub enum Timdis {
NEVER = 0,
TMR_NMINUS1 = 1,
TMR_CMP = 2,
TMR_CMP_TRIGLOW = 3,
PIN_EDGE = 4,
PIN_EDGE_TRIGHI = 5,
TRIG_FALLEDGE = 6,
_RESERVED_7 = 7,
}Variants§
NEVER = 0
Timer never disabled.
TMR_NMINUS1 = 1
Timer disabled on Timer N-1 disable.
TMR_CMP = 2
Timer disabled on Timer compare (upper 8-bits match and decrement).
TMR_CMP_TRIGLOW = 3
Timer disabled on Timer compare (upper 8-bits match and decrement) and Trigger Low.
PIN_EDGE = 4
Timer disabled on Pin rising or falling edge.
PIN_EDGE_TRIGHI = 5
Timer disabled on Pin rising or falling edge provided Trigger is high.
TRIG_FALLEDGE = 6
Timer disabled on Trigger falling edge.
_RESERVED_7 = 7
Implementations§
Trait Implementations§
Source§impl Ord for Timdis
impl Ord for Timdis
Source§impl PartialOrd for Timdis
impl PartialOrd for Timdis
impl Copy for Timdis
impl Eq for Timdis
impl StructuralPartialEq for Timdis
Auto Trait Implementations§
impl Freeze for Timdis
impl RefUnwindSafe for Timdis
impl Send for Timdis
impl Sync for Timdis
impl Unpin for Timdis
impl UnwindSafe for Timdis
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