pub enum ChordIndices {
Chord2(u16, u16),
}
Expand description
Chords are defined by an (unordered) set of indices into the keymap.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ChordIndices
impl Clone for ChordIndices
Source§fn clone(&self) -> ChordIndices
fn clone(&self) -> ChordIndices
Returns a copy 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 ChordIndices
impl Debug for ChordIndices
Source§impl<'de> Deserialize<'de> for ChordIndices
impl<'de> Deserialize<'de> for ChordIndices
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ChordIndices
impl PartialEq for ChordIndices
impl Copy for ChordIndices
impl StructuralPartialEq for ChordIndices
Auto Trait Implementations§
impl Freeze for ChordIndices
impl RefUnwindSafe for ChordIndices
impl Send for ChordIndices
impl Sync for ChordIndices
impl Unpin for ChordIndices
impl UnwindSafe for ChordIndices
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