#[repr(u8)]pub enum Kind {
Normal = 0,
Qwerty = 1,
Numpad = 2,
Western = 3,
}
Expand description
The type of keyboard used by the SoftwareKeyboard
.
Can be set with SoftwareKeyboard::new()
Variants§
Normal = 0
Normal keyboard composed of several pages (QWERTY, accents, symbols, mobile).
Qwerty = 1
Only QWERTY keyboard.
Numpad = 2
Only number pad.
Western = 3
On JPN systems: a keyboard without japanese input capabilities.
On any other region: same as Normal
.
Trait Implementations§
impl Copy for Kind
impl Eq for Kind
impl StructuralPartialEq for Kind
Auto Trait Implementations§
impl RefUnwindSafe for Kind
impl Send for Kind
impl Sync for Kind
impl Unpin for Kind
impl UnwindSafe for Kind
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more