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

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

Fields

inner: u16

Implementations

impl AxnDetail[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pub fn new(
    sk_press: bool,
    sk_accept: bool,
    sk_reject: bool,
    sk_release: bool,
    bk_accept: bool,
    bk_reject: bool,
    axk_warning: bool
) -> Self
[src]

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

Trait Implementations

impl AsByteSequence for AxnDetail[src]

impl BitAnd<AxnDetail> for AxnDetail[src]

type Output = AxnDetail

The resulting type after applying the & operator.

impl Clone for AxnDetail[src]

impl Copy for AxnDetail[src]

impl Debug for AxnDetail[src]

impl Default for AxnDetail[src]

impl Eq for AxnDetail[src]

impl Not for AxnDetail[src]

type Output = AxnDetail

The resulting type after applying the ! operator.

impl Ord for AxnDetail[src]

impl PartialEq<AxnDetail> for AxnDetail[src]

impl PartialOrd<AxnDetail> for AxnDetail[src]

impl StructuralEq for AxnDetail[src]

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