pub enum IntervalDirection {
Ascending,
Descending,
Unison,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for IntervalDirection
impl Clone for IntervalDirection
Source§fn clone(&self) -> IntervalDirection
fn clone(&self) -> IntervalDirection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IntervalDirection
impl Debug for IntervalDirection
Source§impl Display for IntervalDirection
impl Display for IntervalDirection
Source§impl Hash for IntervalDirection
impl Hash for IntervalDirection
Source§impl Ord for IntervalDirection
impl Ord for IntervalDirection
Source§fn cmp(&self, other: &IntervalDirection) -> Ordering
fn cmp(&self, other: &IntervalDirection) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IntervalDirection
impl PartialEq for IntervalDirection
Source§fn eq(&self, other: &IntervalDirection) -> bool
fn eq(&self, other: &IntervalDirection) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for IntervalDirection
impl PartialOrd for IntervalDirection
impl Copy for IntervalDirection
impl Eq for IntervalDirection
impl StructuralPartialEq for IntervalDirection
Auto Trait Implementations§
impl Freeze for IntervalDirection
impl RefUnwindSafe for IntervalDirection
impl Send for IntervalDirection
impl Sync for IntervalDirection
impl Unpin for IntervalDirection
impl UnsafeUnpin for IntervalDirection
impl UnwindSafe for IntervalDirection
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