pub enum CrossingDirection {
Rising,
Falling,
Both,
}Expand description
Direction of zero-crossing to detect.
Variants§
Rising
Detect only when the event function goes from negative to positive
Falling
Detect only when the event function goes from positive to negative
Both
Detect crossings in either direction
Trait Implementations§
Source§impl Clone for CrossingDirection
impl Clone for CrossingDirection
Source§fn clone(&self) -> CrossingDirection
fn clone(&self) -> CrossingDirection
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 CrossingDirection
impl Debug for CrossingDirection
Source§impl Default for CrossingDirection
impl Default for CrossingDirection
Source§fn default() -> CrossingDirection
fn default() -> CrossingDirection
Returns the “default value” for a type. Read more
Source§impl PartialEq for CrossingDirection
impl PartialEq for CrossingDirection
impl Copy for CrossingDirection
impl Eq for CrossingDirection
impl StructuralPartialEq for CrossingDirection
Auto Trait Implementations§
impl Freeze for CrossingDirection
impl RefUnwindSafe for CrossingDirection
impl Send for CrossingDirection
impl Sync for CrossingDirection
impl Unpin for CrossingDirection
impl UnsafeUnpin for CrossingDirection
impl UnwindSafe for CrossingDirection
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