init
This commit is contained in:
parent
c14d84cfdb
commit
345377544b
1 changed files with 11 additions and 0 deletions
|
@ -5,6 +5,17 @@ use std::{
|
|||
fmt::{Display, Write},
|
||||
};
|
||||
|
||||
/// TODO:
|
||||
#[derive(Debug, Clone, Eq, PartialEq)]
|
||||
pub struct KeystrokeDisplay {
|
||||
/// TODO:
|
||||
pub inner: Keystroke,
|
||||
/// TODO:
|
||||
pub modifiers: Modifiers,
|
||||
/// TODO:
|
||||
pub key: String,
|
||||
}
|
||||
|
||||
/// A keystroke and associated metadata generated by the platform
|
||||
#[derive(Clone, Debug, Eq, PartialEq, Default, Deserialize, Hash)]
|
||||
pub struct Keystroke {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue