pub struct HrvMetrics<T> {
pub time: TimeMetrics<T>,
pub frequency: FrequencyMetrics<T>,
pub geometric: GeometricMetrics<T>,
pub non_linear: NonLinearMetrics<T>,
}Expand description
A struct that contains the Heart Rate Variability (HRV) metrics, divided into time-domain, frequency-domain, and geometric-domain metrics.
Fields§
§time: TimeMetrics<T>Time-domain HRV metrics (TimeMetrics<T>).
frequency: FrequencyMetrics<T>Frequency-domain HRV metrics (FrequencyMetrics<T>).
geometric: GeometricMetrics<T>Geometric-domain HRV metrics (GeometricMetrics<T>).
non_linear: NonLinearMetrics<T>Non-linear HRV metrics (NonLinearMetrics<T>).
Trait Implementations§
Source§impl<T: Clone> Clone for HrvMetrics<T>
impl<T: Clone> Clone for HrvMetrics<T>
Source§fn clone(&self) -> HrvMetrics<T>
fn clone(&self) -> HrvMetrics<T>
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<T: Debug> Debug for HrvMetrics<T>
impl<T: Debug> Debug for HrvMetrics<T>
Source§impl<T: Default> Default for HrvMetrics<T>
impl<T: Default> Default for HrvMetrics<T>
Source§fn default() -> HrvMetrics<T>
fn default() -> HrvMetrics<T>
Returns the “default value” for a type. Read more
Source§impl<T: PartialEq> PartialEq for HrvMetrics<T>
impl<T: PartialEq> PartialEq for HrvMetrics<T>
impl<T: Copy> Copy for HrvMetrics<T>
impl<T> StructuralPartialEq for HrvMetrics<T>
Auto Trait Implementations§
impl<T> Freeze for HrvMetrics<T>where
T: Freeze,
impl<T> RefUnwindSafe for HrvMetrics<T>where
T: RefUnwindSafe,
impl<T> Send for HrvMetrics<T>where
T: Send,
impl<T> Sync for HrvMetrics<T>where
T: Sync,
impl<T> Unpin for HrvMetrics<T>where
T: Unpin,
impl<T> UnwindSafe for HrvMetrics<T>where
T: UnwindSafe,
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more