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

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

Fields

inner: u16

Implementations

impl AxOption[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pub fn new(
    sk_press_fb: bool,
    sk_accept_fb: bool,
    feature_fb: bool,
    slow_warn_fb: bool,
    indicator_fb: bool,
    sticky_keys_fb: bool,
    two_keys: bool,
    latch_to_lock: bool,
    sk_release_fb: bool,
    sk_reject_fb: bool,
    bk_reject_fb: bool,
    dumb_bell: bool
) -> Self
[src]

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

pub const SK_PRESS_FB: Self[src]

pub const SK_ACCEPT_FB: Self[src]

pub const FEATURE_FB: Self[src]

pub const SLOW_WARN_FB: Self[src]

pub const INDICATOR_FB: Self[src]

pub const STICKY_KEYS_FB: Self[src]

pub const TWO_KEYS: Self[src]

pub const LATCH_TO_LOCK: Self[src]

pub const SK_RELEASE_FB: Self[src]

pub const SK_REJECT_FB: Self[src]

pub const BK_REJECT_FB: Self[src]

pub const DUMB_BELL: Self[src]

pub const COMPLETE: Self[src]

Trait Implementations

impl AsByteSequence for AxOption[src]

impl BitAnd<AxOption> for AxOption[src]

type Output = AxOption

The resulting type after applying the & operator.

impl BitOr<AxOption> for AxOption[src]

type Output = AxOption

The resulting type after applying the | operator.

impl BitXor<AxOption> for AxOption[src]

type Output = AxOption

The resulting type after applying the ^ operator.

impl Clone for AxOption[src]

impl Copy for AxOption[src]

impl Debug for AxOption[src]

impl Default for AxOption[src]

impl Eq for AxOption[src]

impl Not for AxOption[src]

type Output = AxOption

The resulting type after applying the ! operator.

impl Ord for AxOption[src]

impl PartialEq<AxOption> for AxOption[src]

impl PartialOrd<AxOption> for AxOption[src]

impl StructuralEq for AxOption[src]

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