#[repr(u8)]pub enum Timout {
ONE = 0,
ZERO = 1,
ONE_TMRRESET = 2,
ZERO_TMRRESET = 3,
}Variants§
ONE = 0
Timer output is logic one when enabled and is not affected by timer reset.
ZERO = 1
Timer output is logic zero when enabled and is not affected by timer reset.
ONE_TMRRESET = 2
Timer output is logic one when enabled and on timer reset.
ZERO_TMRRESET = 3
Timer output is logic zero when enabled and on timer reset.
Implementations§
Trait Implementations§
Source§impl Ord for Timout
impl Ord for Timout
Source§impl PartialOrd for Timout
impl PartialOrd for Timout
impl Copy for Timout
impl Eq for Timout
impl StructuralPartialEq for Timout
Auto Trait Implementations§
impl Freeze for Timout
impl RefUnwindSafe for Timout
impl Send for Timout
impl Sync for Timout
impl Unpin for Timout
impl UnwindSafe for Timout
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