| 71 | |
| 72 | #[derive(Copy, Clone, Debug, Default)] |
| 73 | pub struct KeyboardModifiers { |
| 74 | pub shift: bool, |
| 75 | pub control: bool, |
| 76 | pub alt: bool, |
| 77 | pub command: bool, |
| 78 | } |
| 79 | |
| 80 | #[derive(Copy, Clone, Debug, PartialEq)] |
| 81 | pub enum ElementState { |
nothing calls this directly
no outgoing calls
no test coverage detected