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