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

#[repr(transparent)]pub struct Explicit {
    pub inner: u8,
}

Fields

inner: u8

Implementations

impl Explicit[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pub fn new(
    key_type1: bool,
    key_type2: bool,
    key_type3: bool,
    key_type4: bool,
    interpret: bool,
    auto_repeat: bool,
    behavior: bool,
    v_mod_map: bool
) -> Self
[src]

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

Trait Implementations

impl AsByteSequence for Explicit[src]

impl BitAnd<Explicit> for Explicit[src]

type Output = Explicit

The resulting type after applying the & operator.

impl Clone for Explicit[src]

impl Copy for Explicit[src]

impl Debug for Explicit[src]

impl Default for Explicit[src]

impl Eq for Explicit[src]

impl Not for Explicit[src]

type Output = Explicit

The resulting type after applying the ! operator.

impl Ord for Explicit[src]

impl PartialEq<Explicit> for Explicit[src]

impl PartialOrd<Explicit> for Explicit[src]

impl StructuralEq for Explicit[src]

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