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

#[repr(transparent)]pub struct PerClientFlag {
    pub inner: u32,
}

Fields

inner: u32

Implementations

impl PerClientFlag[src]

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

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

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

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

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

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

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

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

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

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

pub fn new(
    detectable_auto_repeat: bool,
    grabs_use_xkb_state: bool,
    auto_reset_controls: bool,
    lookup_state_when_grabbed: bool,
    send_event_uses_xkb_state: bool
) -> Self
[src]

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

Trait Implementations

impl AsByteSequence for PerClientFlag[src]

impl BitAnd<PerClientFlag> for PerClientFlag[src]

type Output = PerClientFlag

The resulting type after applying the & operator.

impl Clone for PerClientFlag[src]

impl Copy for PerClientFlag[src]

impl Debug for PerClientFlag[src]

impl Default for PerClientFlag[src]

impl Eq for PerClientFlag[src]

impl Not for PerClientFlag[src]

type Output = PerClientFlag

The resulting type after applying the ! operator.

impl Ord for PerClientFlag[src]

impl PartialEq<PerClientFlag> for PerClientFlag[src]

impl PartialOrd<PerClientFlag> for PerClientFlag[src]

impl StructuralEq for PerClientFlag[src]

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