pub enum ChordResolution {
Chord,
Passthrough,
}
Expand description
Whether the pressed key state has resolved to a chord or not.
Variants§
Trait Implementations§
Source§impl Clone for ChordResolution
impl Clone for ChordResolution
Source§fn clone(&self) -> ChordResolution
fn clone(&self) -> ChordResolution
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 ChordResolution
impl Debug for ChordResolution
Source§impl Ord for ChordResolution
impl Ord for ChordResolution
Source§fn cmp(&self, other: &ChordResolution) -> Ordering
fn cmp(&self, other: &ChordResolution) -> Ordering
1.21.0 · 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 ChordResolution
impl PartialEq for ChordResolution
Source§impl PartialOrd for ChordResolution
impl PartialOrd for ChordResolution
impl Copy for ChordResolution
impl Eq for ChordResolution
impl StructuralPartialEq for ChordResolution
Auto Trait Implementations§
impl Freeze for ChordResolution
impl RefUnwindSafe for ChordResolution
impl Send for ChordResolution
impl Sync for ChordResolution
impl Unpin for ChordResolution
impl UnwindSafe for ChordResolution
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