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

#[repr(transparent)]pub struct ImGroupsWhich {
    pub inner: u8,
}

Fields

inner: u8

Implementations

impl ImGroupsWhich[src]

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

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

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

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

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

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

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

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

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

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

pub fn new(
    use_base: bool,
    use_latched: bool,
    use_locked: bool,
    use_effective: bool,
    use_compat: bool
) -> Self
[src]

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

pub const USE_BASE: Self[src]

pub const USE_LATCHED: Self[src]

pub const USE_LOCKED: Self[src]

pub const USE_EFFECTIVE: Self[src]

pub const USE_COMPAT: Self[src]

pub const COMPLETE: Self[src]

Trait Implementations

impl AsByteSequence for ImGroupsWhich[src]

impl BitAnd<ImGroupsWhich> for ImGroupsWhich[src]

type Output = ImGroupsWhich

The resulting type after applying the & operator.

impl BitOr<ImGroupsWhich> for ImGroupsWhich[src]

type Output = ImGroupsWhich

The resulting type after applying the | operator.

impl BitXor<ImGroupsWhich> for ImGroupsWhich[src]

type Output = ImGroupsWhich

The resulting type after applying the ^ operator.

impl Clone for ImGroupsWhich[src]

impl Copy for ImGroupsWhich[src]

impl Debug for ImGroupsWhich[src]

impl Default for ImGroupsWhich[src]

impl Eq for ImGroupsWhich[src]

impl Not for ImGroupsWhich[src]

type Output = ImGroupsWhich

The resulting type after applying the ! operator.

impl Ord for ImGroupsWhich[src]

impl PartialEq<ImGroupsWhich> for ImGroupsWhich[src]

impl PartialOrd<ImGroupsWhich> for ImGroupsWhich[src]

impl StructuralEq for ImGroupsWhich[src]

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