pub enum BeatDivision {
Duple,
Triple,
Quadruple,
Quintuple,
Septuple,
Custom,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for BeatDivision
impl Clone for BeatDivision
Source§fn clone(&self) -> BeatDivision
fn clone(&self) -> BeatDivision
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 BeatDivision
impl Debug for BeatDivision
Source§impl Display for BeatDivision
impl Display for BeatDivision
Source§impl FromStr for BeatDivision
impl FromStr for BeatDivision
Source§impl Hash for BeatDivision
impl Hash for BeatDivision
Source§impl Ord for BeatDivision
impl Ord for BeatDivision
Source§fn cmp(&self, other: &BeatDivision) -> Ordering
fn cmp(&self, other: &BeatDivision) -> 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 BeatDivision
impl PartialEq for BeatDivision
Source§fn eq(&self, other: &BeatDivision) -> bool
fn eq(&self, other: &BeatDivision) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for BeatDivision
impl PartialOrd for BeatDivision
impl Copy for BeatDivision
impl Eq for BeatDivision
impl StructuralPartialEq for BeatDivision
Auto Trait Implementations§
impl Freeze for BeatDivision
impl RefUnwindSafe for BeatDivision
impl Send for BeatDivision
impl Sync for BeatDivision
impl Unpin for BeatDivision
impl UnsafeUnpin for BeatDivision
impl UnwindSafe for BeatDivision
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