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

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

Fields

inner: u16

Implementations

impl MapPart[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pub fn new(
    key_types: bool,
    key_syms: bool,
    modifier_map: bool,
    explicit_components: bool,
    key_actions: bool,
    key_behaviors: bool,
    virtual_mods: bool,
    virtual_mod_map: bool
) -> Self
[src]

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

pub const KEY_TYPES: Self[src]

pub const KEY_SYMS: Self[src]

pub const MODIFIER_MAP: Self[src]

pub const EXPLICIT_COMPONENTS: Self[src]

pub const KEY_ACTIONS: Self[src]

pub const KEY_BEHAVIORS: Self[src]

pub const VIRTUAL_MODS: Self[src]

pub const VIRTUAL_MOD_MAP: Self[src]

pub const COMPLETE: Self[src]

Trait Implementations

impl AsByteSequence for MapPart[src]

impl BitAnd<MapPart> for MapPart[src]

type Output = MapPart

The resulting type after applying the & operator.

impl BitOr<MapPart> for MapPart[src]

type Output = MapPart

The resulting type after applying the | operator.

impl BitXor<MapPart> for MapPart[src]

type Output = MapPart

The resulting type after applying the ^ operator.

impl Clone for MapPart[src]

impl Copy for MapPart[src]

impl Debug for MapPart[src]

impl Default for MapPart[src]

impl Eq for MapPart[src]

impl Not for MapPart[src]

type Output = MapPart

The resulting type after applying the ! operator.

impl Ord for MapPart[src]

impl PartialEq<MapPart> for MapPart[src]

impl PartialOrd<MapPart> for MapPart[src]

impl StructuralEq for MapPart[src]

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