pub enum EctopicMethod {
Karlsson,
Acar,
}Expand description
Enum representing different methods for detecting ectopic beats in RR intervals.
This enum provides various algorithms for identifying and removing ectopic beats based on predefined statistical criteria.
Variants§
Karlsson
Karlsson method for detecting ectopic beats in RR intervals.
An RR interval is considered ectopic if it differs by more than 20% from the mean of the previous and next RR intervals.
Acar
Acar method for detecting ectopic beats in RR intervals.
An RR interval is considered ectopic if it differs by more than 20% from the mean of the last 9 RR intervals.
Auto Trait Implementations§
impl Freeze for EctopicMethod
impl RefUnwindSafe for EctopicMethod
impl Send for EctopicMethod
impl Sync for EctopicMethod
impl Unpin for EctopicMethod
impl UnwindSafe for EctopicMethod
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> 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