This commit is contained in:
Junkui Zhang 2025-08-19 14:14:11 +08:00
parent c14d84cfdb
commit 345377544b

View file

@ -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 {