Enum android_activity::input::KeyMapChar
source · pub enum KeyMapChar {
None,
Unicode(char),
CombiningAccent(char),
}
Expand description
Either represents, a unicode character or combining accent from a
KeyCharacterMap
, or None
for non-printable keys.
Variants§
Trait Implementations§
source§impl Clone for KeyMapChar
impl Clone for KeyMapChar
source§fn clone(&self) -> KeyMapChar
fn clone(&self) -> KeyMapChar
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for KeyMapChar
impl Debug for KeyMapChar
source§impl Hash for KeyMapChar
impl Hash for KeyMapChar
source§impl PartialEq for KeyMapChar
impl PartialEq for KeyMapChar
source§fn eq(&self, other: &KeyMapChar) -> bool
fn eq(&self, other: &KeyMapChar) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for KeyMapChar
impl Eq for KeyMapChar
impl StructuralPartialEq for KeyMapChar
Auto Trait Implementations§
impl Freeze for KeyMapChar
impl RefUnwindSafe for KeyMapChar
impl Send for KeyMapChar
impl Sync for KeyMapChar
impl Unpin for KeyMapChar
impl UnwindSafe for KeyMapChar
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