| 59 | /// ``` |
| 60 | #[derive(Debug, Clone)] |
| 61 | pub struct KeyCombinationFormat { |
| 62 | pub control: String, |
| 63 | pub command: String, // also called 'super', 'apple', 'windows' |
| 64 | pub alt: String, |
| 65 | pub shift: String, |
| 66 | pub enter: String, |
| 67 | pub uppercase_shift: bool, |
| 68 | pub key_separator: String, |
| 69 | } |
| 70 | |
| 71 | impl Default for KeyCombinationFormat { |
| 72 | fn default() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected