#[repr(u8)]pub enum Ltimeselect {
Default = 0,
_8ms = 4,
_9ms = 5,
_10ms = 6,
_11ms = 7,
}
Expand description
Lock Time
Value on reset: 0
Variants§
Default = 0
0: No time-out
_8ms = 4
4: Time-out if no lock within 8 ms
_9ms = 5
5: Time-out if no lock within 9 ms
_10ms = 6
6: Time-out if no lock within 10 ms
_11ms = 7
7: Time-out if no lock within 11 ms
Trait Implementations§
Source§impl Clone for Ltimeselect
impl Clone for Ltimeselect
Source§fn clone(&self) -> Ltimeselect
fn clone(&self) -> Ltimeselect
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Ltimeselect
impl Debug for Ltimeselect
Source§impl From<Ltimeselect> for u8
impl From<Ltimeselect> for u8
Source§fn from(variant: Ltimeselect) -> Self
fn from(variant: Ltimeselect) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Ltimeselect
impl PartialEq for Ltimeselect
impl Copy for Ltimeselect
impl Eq for Ltimeselect
impl IsEnum for Ltimeselect
impl StructuralPartialEq for Ltimeselect
Auto Trait Implementations§
impl Freeze for Ltimeselect
impl RefUnwindSafe for Ltimeselect
impl Send for Ltimeselect
impl Sync for Ltimeselect
impl Unpin for Ltimeselect
impl UnwindSafe for Ltimeselect
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