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

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

Fields

inner: u16

Implementations

impl NknDetail[src]

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

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

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

pub fn new(keycodes: bool, geometry: bool, device_id: bool) -> Self[src]

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

Trait Implementations

impl AsByteSequence for NknDetail[src]

impl BitAnd<NknDetail> for NknDetail[src]

type Output = NknDetail

The resulting type after applying the & operator.

impl Clone for NknDetail[src]

impl Copy for NknDetail[src]

impl Debug for NknDetail[src]

impl Default for NknDetail[src]

impl Eq for NknDetail[src]

impl Not for NknDetail[src]

type Output = NknDetail

The resulting type after applying the ! operator.

impl Ord for NknDetail[src]

impl PartialEq<NknDetail> for NknDetail[src]

impl PartialOrd<NknDetail> for NknDetail[src]

impl StructuralEq for NknDetail[src]

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