pub enum OutputRate {
SPS100,
SPS200,
SPS400,
}Expand description
Output data rate configuration for FDC1004 measurements.
The FDC1004 supports configurable sample rates for capacitance measurements. Higher rates provide faster measurements but may have reduced accuracy.
Variants§
SPS100
100 samples per second (default).
SPS200
200 samples per second.
SPS400
400 samples per second.
Trait Implementations§
Source§impl Clone for OutputRate
impl Clone for OutputRate
Source§fn clone(&self) -> OutputRate
fn clone(&self) -> OutputRate
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for OutputRate
Source§impl Debug for OutputRate
impl Debug for OutputRate
Source§impl Default for OutputRate
impl Default for OutputRate
Source§fn default() -> OutputRate
fn default() -> OutputRate
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OutputRate
impl RefUnwindSafe for OutputRate
impl Send for OutputRate
impl Sync for OutputRate
impl Unpin for OutputRate
impl UnsafeUnpin for OutputRate
impl UnwindSafe for OutputRate
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