pub enum ModSamplingFreq {
Smpl125Hz = 125,
Smpl250Hz = 250,
Smpl500Hz = 500,
Smpl1Khz = 1_000,
Smpl2Khz = 2_000,
Smpl4Khz = 4_000,
Smpl8Khz = 8_000,
}Variants§
Smpl125Hz = 125
Smpl250Hz = 250
Smpl500Hz = 500
Smpl1Khz = 1_000
Smpl2Khz = 2_000
Smpl4Khz = 4_000
Smpl8Khz = 8_000
Trait Implementations§
Source§impl Clone for ModSamplingFreq
impl Clone for ModSamplingFreq
Source§fn clone(&self) -> ModSamplingFreq
fn clone(&self) -> ModSamplingFreq
Returns a duplicate 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 ModSamplingFreq
impl Debug for ModSamplingFreq
Source§impl PartialEq for ModSamplingFreq
impl PartialEq for ModSamplingFreq
impl Copy for ModSamplingFreq
impl StructuralPartialEq for ModSamplingFreq
Auto Trait Implementations§
impl Freeze for ModSamplingFreq
impl RefUnwindSafe for ModSamplingFreq
impl Send for ModSamplingFreq
impl Sync for ModSamplingFreq
impl Unpin for ModSamplingFreq
impl UnwindSafe for ModSamplingFreq
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> IntoVec<Matrix<T, U2, U1, <DefaultAllocator as Allocator<T, U2>>::Buffer>> for Twhere
T: Scalar,
impl<T> IntoVec<Matrix<T, U2, U1, <DefaultAllocator as Allocator<T, U2>>::Buffer>> for Twhere
T: Scalar,
Source§impl<T> IntoVec<Matrix<T, U3, U1, <DefaultAllocator as Allocator<T, U3>>::Buffer>> for Twhere
T: Scalar,
impl<T> IntoVec<Matrix<T, U3, U1, <DefaultAllocator as Allocator<T, U3>>::Buffer>> for Twhere
T: Scalar,
Source§impl<T> IntoVec<Matrix<T, U4, U1, <DefaultAllocator as Allocator<T, U4>>::Buffer>> for Twhere
T: Scalar,
impl<T> IntoVec<Matrix<T, U4, U1, <DefaultAllocator as Allocator<T, U4>>::Buffer>> for Twhere
T: Scalar,
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.