pub struct Key<R> {
pub tap: R,
pub hold: R,
}
Expand description
A key with tap-hold functionality.
Fields§
§tap: R
The ‘tap’ key.
hold: R
The ‘hold’ key.
Implementations§
Trait Implementations§
Source§impl<'de, R> Deserialize<'de> for Key<R>where
R: Deserialize<'de>,
impl<'de, R> Deserialize<'de> for Key<R>where
R: Deserialize<'de>,
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
impl<R: Copy> Copy for Key<R>
impl<R> StructuralPartialEq for Key<R>
Auto Trait Implementations§
impl<R> Freeze for Key<R>where
R: Freeze,
impl<R> RefUnwindSafe for Key<R>where
R: RefUnwindSafe,
impl<R> Send for Key<R>where
R: Send,
impl<R> Sync for Key<R>where
R: Sync,
impl<R> Unpin for Key<R>where
R: Unpin,
impl<R> UnwindSafe for Key<R>where
R: UnwindSafe,
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