Derive PartialEq,Eq,Hash for ModifiersState
This commit is contained in:
parent
f927d98720
commit
7fb89ac924
|
@ -14,7 +14,7 @@ pub use xkbcommon::xkb::{keysyms, Keysym};
|
||||||
///
|
///
|
||||||
/// For some modifiers, this means that the key is currently pressed, others are toggled
|
/// For some modifiers, this means that the key is currently pressed, others are toggled
|
||||||
/// (like caps lock).
|
/// (like caps lock).
|
||||||
#[derive(Copy, Clone, Debug)]
|
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
|
||||||
pub struct ModifiersState {
|
pub struct ModifiersState {
|
||||||
/// The "control" key
|
/// The "control" key
|
||||||
pub ctrl: bool,
|
pub ctrl: bool,
|
||||||
|
|
Loading…
Reference in New Issue