Enum xkbcommon_dl::xkb_context_flags
source · #[repr(C)]pub enum xkb_context_flags {
XKB_CONTEXT_NO_FLAGS = 0,
XKB_CONTEXT_NO_DEFAULT_INCLUDES = 1,
XKB_CONTEXT_NO_ENVIRONMENT_NAMES = 2,
}
Variants§
XKB_CONTEXT_NO_FLAGS = 0
Do not apply any context flags.
XKB_CONTEXT_NO_DEFAULT_INCLUDES = 1
Create this context with an empty include path.
XKB_CONTEXT_NO_ENVIRONMENT_NAMES = 2
Don’t take RMLVO names from the environment.
Trait Implementations§
source§impl Clone for xkb_context_flags
impl Clone for xkb_context_flags
source§fn clone(&self) -> xkb_context_flags
fn clone(&self) -> xkb_context_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_context_flags
impl Debug for xkb_context_flags
source§impl PartialEq for xkb_context_flags
impl PartialEq for xkb_context_flags
source§fn eq(&self, other: &xkb_context_flags) -> bool
fn eq(&self, other: &xkb_context_flags) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for xkb_context_flags
impl StructuralPartialEq for xkb_context_flags
Auto Trait Implementations§
impl Freeze for xkb_context_flags
impl RefUnwindSafe for xkb_context_flags
impl Send for xkb_context_flags
impl Sync for xkb_context_flags
impl Unpin for xkb_context_flags
impl UnwindSafe for xkb_context_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