pub enum SamplingConfig {
// some variants omitted
}
Available on crate features
derive
and sampling_config
only.Expand description
The configuration for sampling.
Implementations§
Source§impl SamplingConfig
impl SamplingConfig
Sourcepub const FREQ_40K: Self
pub const FREQ_40K: Self
A SamplingConfig
of 40kHz.
Sourcepub const FREQ_4K: Self
pub const FREQ_4K: Self
A SamplingConfig
of 4kHz.
Sourcepub fn new(value: impl Into<SamplingConfig>) -> Self
pub fn new(value: impl Into<SamplingConfig>) -> Self
Creates a new SamplingConfig
.
Sourcepub fn division(&self) -> Result<u16, SamplingConfigError>
pub fn division(&self) -> Result<u16, SamplingConfigError>
The division number of the sampling frequency.
The sampling frequency is ultrasound_freq
/ division
.
Source§impl SamplingConfig
impl SamplingConfig
Sourcepub const fn into_nearest(self) -> SamplingConfig
pub const fn into_nearest(self) -> SamplingConfig
Converts to a SamplingConfig
with the nearest frequency or period among the possible values.
Trait Implementations§
Source§impl Clone for SamplingConfig
impl Clone for SamplingConfig
Source§fn clone(&self) -> SamplingConfig
fn clone(&self) -> SamplingConfig
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 SamplingConfig
impl Debug for SamplingConfig
Source§impl From<NonZero<u16>> for SamplingConfig
impl From<NonZero<u16>> for SamplingConfig
Source§fn from(value: NonZeroU16) -> Self
fn from(value: NonZeroU16) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SamplingConfig
impl PartialEq for SamplingConfig
impl Copy for SamplingConfig
Auto Trait Implementations§
impl Freeze for SamplingConfig
impl RefUnwindSafe for SamplingConfig
impl Send for SamplingConfig
impl Sync for SamplingConfig
impl Unpin for SamplingConfig
impl UnwindSafe for SamplingConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.