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

#[repr(transparent)]pub struct GbnDetail {
    pub inner: u16,
}

Fields

inner: u16

Implementations

impl GbnDetail[src]

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

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

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

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

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

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

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

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

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

pub fn set_indicator_maps(&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 geometry(&self) -> bool[src]

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

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

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

pub fn new(
    types: bool,
    compat_map: bool,
    client_symbols: bool,
    server_symbols: bool,
    indicator_maps: bool,
    key_names: bool,
    geometry: bool,
    other_names: bool
) -> Self
[src]

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

pub const TYPES: Self[src]

pub const COMPAT_MAP: Self[src]

pub const CLIENT_SYMBOLS: Self[src]

pub const SERVER_SYMBOLS: Self[src]

pub const INDICATOR_MAPS: Self[src]

pub const KEY_NAMES: Self[src]

pub const GEOMETRY: Self[src]

pub const OTHER_NAMES: Self[src]

pub const COMPLETE: Self[src]

Trait Implementations

impl AsByteSequence for GbnDetail[src]

impl BitAnd<GbnDetail> for GbnDetail[src]

type Output = GbnDetail

The resulting type after applying the & operator.

impl BitOr<GbnDetail> for GbnDetail[src]

type Output = GbnDetail

The resulting type after applying the | operator.

impl BitXor<GbnDetail> for GbnDetail[src]

type Output = GbnDetail

The resulting type after applying the ^ operator.

impl Clone for GbnDetail[src]

impl Copy for GbnDetail[src]

impl Debug for GbnDetail[src]

impl Default for GbnDetail[src]

impl Eq for GbnDetail[src]

impl Not for GbnDetail[src]

type Output = GbnDetail

The resulting type after applying the ! operator.

impl Ord for GbnDetail[src]

impl PartialEq<GbnDetail> for GbnDetail[src]

impl PartialOrd<GbnDetail> for GbnDetail[src]

impl StructuralEq for GbnDetail[src]

impl StructuralPartialEq for GbnDetail[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.