[][src]Struct breadx::auto::xkb::NameDetail

#[repr(transparent)]pub struct NameDetail {
    pub inner: u32,
}

Fields

inner: u32

Implementations

impl NameDetail[src]

pub fn keycodes(&self) -> bool[src]

pub fn set_keycodes(&mut self, val: bool) -> &mut Self[src]

pub fn geometry(&self) -> bool[src]

pub fn set_geometry(&mut self, val: bool) -> &mut Self[src]

pub fn symbols(&self) -> bool[src]

pub fn set_symbols(&mut self, val: bool) -> &mut Self[src]

pub fn phys_symbols(&self) -> bool[src]

pub fn set_phys_symbols(&mut self, val: bool) -> &mut Self[src]

pub fn types(&self) -> bool[src]

pub fn set_types(&mut self, val: bool) -> &mut Self[src]

pub fn compat(&self) -> bool[src]

pub fn set_compat(&mut self, val: bool) -> &mut Self[src]

pub fn key_type_names(&self) -> bool[src]

pub fn set_key_type_names(&mut self, val: bool) -> &mut Self[src]

pub fn kt_level_names(&self) -> bool[src]

pub fn set_kt_level_names(&mut self, val: bool) -> &mut Self[src]

pub fn indicator_names(&self) -> bool[src]

pub fn set_indicator_names(&mut self, val: bool) -> &mut Self[src]

pub fn key_names(&self) -> bool[src]

pub fn set_key_names(&mut self, val: bool) -> &mut Self[src]

pub fn key_aliases(&self) -> bool[src]

pub fn set_key_aliases(&mut self, val: bool) -> &mut Self[src]

pub fn virtual_mod_names(&self) -> bool[src]

pub fn set_virtual_mod_names(&mut self, val: bool) -> &mut Self[src]

pub fn group_names(&self) -> bool[src]

pub fn set_group_names(&mut self, val: bool) -> &mut Self[src]

pub fn rg_names(&self) -> bool[src]

pub fn set_rg_names(&mut self, val: bool) -> &mut Self[src]

pub fn new(
    keycodes: bool,
    geometry: bool,
    symbols: bool,
    phys_symbols: bool,
    types: bool,
    compat: bool,
    key_type_names: bool,
    kt_level_names: bool,
    indicator_names: bool,
    key_names: bool,
    key_aliases: bool,
    virtual_mod_names: bool,
    group_names: bool,
    rg_names: bool
) -> Self
[src]

pub fn count_ones(&self) -> usize[src]

Trait Implementations

impl AsByteSequence for NameDetail[src]

impl BitAnd<NameDetail> for NameDetail[src]

type Output = NameDetail

The resulting type after applying the & operator.

impl Clone for NameDetail[src]

impl Copy for NameDetail[src]

impl Debug for NameDetail[src]

impl Default for NameDetail[src]

impl Eq for NameDetail[src]

impl Not for NameDetail[src]

type Output = NameDetail

The resulting type after applying the ! operator.

impl Ord for NameDetail[src]

impl PartialEq<NameDetail> for NameDetail[src]

impl PartialOrd<NameDetail> for NameDetail[src]

impl StructuralEq for NameDetail[src]

impl StructuralPartialEq for NameDetail[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.