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

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

Fields

inner: u16

Implementations

impl EventType[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pub fn new(
    new_keyboard_notify: bool,
    map_notify: bool,
    state_notify: bool,
    controls_notify: bool,
    indicator_state_notify: bool,
    indicator_map_notify: bool,
    names_notify: bool,
    compat_map_notify: bool,
    bell_notify: bool,
    action_message: bool,
    access_x_notify: bool,
    extension_device_notify: bool
) -> Self
[src]

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

Trait Implementations

impl AsByteSequence for EventType[src]

impl BitAnd<EventType> for EventType[src]

type Output = EventType

The resulting type after applying the & operator.

impl Clone for EventType[src]

impl Copy for EventType[src]

impl Debug for EventType[src]

impl Default for EventType[src]

impl Eq for EventType[src]

impl Not for EventType[src]

type Output = EventType

The resulting type after applying the ! operator.

impl Ord for EventType[src]

impl PartialEq<EventType> for EventType[src]

impl PartialOrd<EventType> for EventType[src]

impl StructuralEq for EventType[src]

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