Enum xkbcommon_dl::xkb_keysym_flags
source · #[repr(C)]pub enum xkb_keysym_flags {
XKB_KEYSYM_NO_FLAGS = 0,
XKB_KEYSYM_CASE_INSENSITIVE = 1,
}
Variants§
XKB_KEYSYM_NO_FLAGS = 0
Do not apply any flags.
XKB_KEYSYM_CASE_INSENSITIVE = 1
Find keysym by case-insensitive search.
Trait Implementations§
source§impl Clone for xkb_keysym_flags
impl Clone for xkb_keysym_flags
source§fn clone(&self) -> xkb_keysym_flags
fn clone(&self) -> xkb_keysym_flags
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 xkb_keysym_flags
impl Debug for xkb_keysym_flags
source§impl PartialEq for xkb_keysym_flags
impl PartialEq for xkb_keysym_flags
source§fn eq(&self, other: &xkb_keysym_flags) -> bool
fn eq(&self, other: &xkb_keysym_flags) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for xkb_keysym_flags
impl StructuralPartialEq for xkb_keysym_flags
Auto Trait Implementations§
impl Freeze for xkb_keysym_flags
impl RefUnwindSafe for xkb_keysym_flags
impl Send for xkb_keysym_flags
impl Sync for xkb_keysym_flags
impl Unpin for xkb_keysym_flags
impl UnwindSafe for xkb_keysym_flags
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