| 231 | /// so the keyboard needs to provide some kinde of switch key. |
| 232 | #[derive(Clone, Copy, Debug, PartialEq, Eq)] |
| 233 | pub enum UnicodeSendMode { |
| 234 | //default X |
| 235 | Linux = 1, |
| 236 | LinuxDvorak, |
| 237 | /// use https://github.com/samhocevar/wincompose |
| 238 | WinCompose, |
| 239 | WinComposeDvorak, |
| 240 | // used by the tests |
| 241 | Debug, |
| 242 | } |
| 243 | impl Default for UnicodeSendMode { |
| 244 | fn default() -> UnicodeSendMode { |
| 245 | UnicodeSendMode::Linux |
nothing calls this directly
no outgoing calls
no test coverage detected