#[repr(u8)]pub enum Timrst {
NEVER = 0,
_RESERVED_1 = 1,
PIN_EQ_TMR_OUT = 2,
TRIG_EQ_TMR_OUT = 3,
PIN_RISE_EDGE = 4,
_RESERVED_5 = 5,
TRIG_RISE_EDGE = 6,
TRIG_EDGE = 7,
}Variants§
NEVER = 0
Timer never reset.
_RESERVED_1 = 1
PIN_EQ_TMR_OUT = 2
Timer reset on Timer Pin equal to Timer Output.
TRIG_EQ_TMR_OUT = 3
Timer reset on Timer Trigger equal to Timer Output.
PIN_RISE_EDGE = 4
Timer reset on Timer Pin rising edge.
_RESERVED_5 = 5
TRIG_RISE_EDGE = 6
Timer reset on Trigger rising edge.
TRIG_EDGE = 7
Timer reset on Trigger rising or falling edge.
Implementations§
Trait Implementations§
Source§impl Ord for Timrst
impl Ord for Timrst
Source§impl PartialOrd for Timrst
impl PartialOrd for Timrst
impl Copy for Timrst
impl Eq for Timrst
impl StructuralPartialEq for Timrst
Auto Trait Implementations§
impl Freeze for Timrst
impl RefUnwindSafe for Timrst
impl Send for Timrst
impl Sync for Timrst
impl Unpin for Timrst
impl UnwindSafe for Timrst
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