pub enum KeyboardLayoutType {
Qwerty,
Dvorak,
Custom(HashMap<char, Vec<char>>),
}Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for KeyboardLayoutType
impl RefUnwindSafe for KeyboardLayoutType
impl Send for KeyboardLayoutType
impl Sync for KeyboardLayoutType
impl Unpin for KeyboardLayoutType
impl UnwindSafe for KeyboardLayoutType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more