pub enum SampleTime {
T_4 = 0,
T_9 = 1,
T_16 = 2,
T_24 = 3,
T_48 = 4,
T_96 = 5,
T_192 = 6,
T_384 = 7,
}
Expand description
ADC Sampling time
Variants§
Trait Implementations§
Source§impl Clone for SampleTime
impl Clone for SampleTime
Source§fn clone(&self) -> SampleTime
fn clone(&self) -> SampleTime
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 PartialEq for SampleTime
impl PartialEq for SampleTime
impl Copy for SampleTime
impl StructuralPartialEq for SampleTime
Auto Trait Implementations§
impl Freeze for SampleTime
impl RefUnwindSafe for SampleTime
impl Send for SampleTime
impl Sync for SampleTime
impl Unpin for SampleTime
impl UnwindSafe for SampleTime
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