Struct x11rb::protocol::xkb::NameDetail
source · pub struct NameDetail(u32);
Tuple Fields§
§0: u32
Implementations§
source§impl NameDetail
impl NameDetail
pub const KEYCODES: NameDetail = _
pub const GEOMETRY: NameDetail = _
pub const SYMBOLS: NameDetail = _
pub const PHYS_SYMBOLS: NameDetail = _
pub const TYPES: NameDetail = _
pub const COMPAT: NameDetail = _
pub const KEY_TYPE_NAMES: NameDetail = _
pub const KT_LEVEL_NAMES: NameDetail = _
pub const INDICATOR_NAMES: NameDetail = _
pub const KEY_NAMES: NameDetail = _
pub const KEY_ALIASES: NameDetail = _
pub const VIRTUAL_MOD_NAMES: NameDetail = _
pub const GROUP_NAMES: NameDetail = _
pub const RG_NAMES: NameDetail = _
source§impl NameDetail
impl NameDetail
sourcepub fn contains(self, flag: impl Into<u32>) -> bool
pub fn contains(self, flag: impl Into<u32>) -> bool
Check if this object has all bits set that are also set in flag
.
flag
can be a single enum variant or a whole other mask.
sourcepub fn intersects(self, flag: impl Into<u32>) -> bool
pub fn intersects(self, flag: impl Into<u32>) -> bool
Check if this object has some bits set that are also set in flag
.
flag
can be a single enum variant or a whole other mask.
sourcepub fn remove(self, flags: impl Into<u32>) -> NameDetail
pub fn remove(self, flags: impl Into<u32>) -> NameDetail
Remove some flags.
All bits that are set in the given flags are removed from the self
instance, if
they are present.
Trait Implementations§
source§impl BitAnd<u32> for NameDetail
impl BitAnd<u32> for NameDetail
source§impl BitAnd for NameDetail
impl BitAnd for NameDetail
§type Output = NameDetail
type Output = NameDetail
The resulting type after applying the
&
operator.source§fn bitand(self, other: NameDetail) -> <NameDetail as BitAnd>::Output
fn bitand(self, other: NameDetail) -> <NameDetail as BitAnd>::Output
Performs the
&
operation. Read moresource§impl BitAndAssign<u32> for NameDetail
impl BitAndAssign<u32> for NameDetail
source§fn bitand_assign(&mut self, other: u32)
fn bitand_assign(&mut self, other: u32)
Performs the
&=
operation. Read moresource§impl BitAndAssign for NameDetail
impl BitAndAssign for NameDetail
source§fn bitand_assign(&mut self, other: NameDetail)
fn bitand_assign(&mut self, other: NameDetail)
Performs the
&=
operation. Read moresource§impl BitOr<u32> for NameDetail
impl BitOr<u32> for NameDetail
source§impl BitOr for NameDetail
impl BitOr for NameDetail
§type Output = NameDetail
type Output = NameDetail
The resulting type after applying the
|
operator.source§fn bitor(self, other: NameDetail) -> <NameDetail as BitOr>::Output
fn bitor(self, other: NameDetail) -> <NameDetail as BitOr>::Output
Performs the
|
operation. Read moresource§impl BitOrAssign<u32> for NameDetail
impl BitOrAssign<u32> for NameDetail
source§fn bitor_assign(&mut self, other: u32)
fn bitor_assign(&mut self, other: u32)
Performs the
|=
operation. Read moresource§impl BitOrAssign for NameDetail
impl BitOrAssign for NameDetail
source§fn bitor_assign(&mut self, other: NameDetail)
fn bitor_assign(&mut self, other: NameDetail)
Performs the
|=
operation. Read moresource§impl Clone for NameDetail
impl Clone for NameDetail
source§fn clone(&self) -> NameDetail
fn clone(&self) -> NameDetail
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 NameDetail
impl Debug for NameDetail
source§impl Default for NameDetail
impl Default for NameDetail
source§fn default() -> NameDetail
fn default() -> NameDetail
Returns the “default value” for a type. Read more
source§impl From<u16> for NameDetail
impl From<u16> for NameDetail
source§fn from(value: u16) -> NameDetail
fn from(value: u16) -> NameDetail
Converts to this type from the input type.
source§impl From<u32> for NameDetail
impl From<u32> for NameDetail
source§fn from(value: u32) -> NameDetail
fn from(value: u32) -> NameDetail
Converts to this type from the input type.
source§impl From<u8> for NameDetail
impl From<u8> for NameDetail
source§fn from(value: u8) -> NameDetail
fn from(value: u8) -> NameDetail
Converts to this type from the input type.
source§impl Hash for NameDetail
impl Hash for NameDetail
source§impl Ord for NameDetail
impl Ord for NameDetail
source§fn cmp(&self, other: &NameDetail) -> Ordering
fn cmp(&self, other: &NameDetail) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for NameDetail
impl PartialEq for NameDetail
source§fn eq(&self, other: &NameDetail) -> bool
fn eq(&self, other: &NameDetail) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for NameDetail
impl PartialOrd for NameDetail
source§fn partial_cmp(&self, other: &NameDetail) -> Option<Ordering>
fn partial_cmp(&self, other: &NameDetail) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for NameDetail
impl Eq for NameDetail
impl StructuralPartialEq for NameDetail
Auto Trait Implementations§
impl Freeze for NameDetail
impl RefUnwindSafe for NameDetail
impl Send for NameDetail
impl Sync for NameDetail
impl Unpin for NameDetail
impl UnwindSafe for NameDetail
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