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

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

Fields

inner: u8

Implementations

impl SetOfGroup[src]

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

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

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

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

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

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

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

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

pub fn new(group1: bool, group2: bool, group3: bool, group4: bool) -> Self[src]

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

Trait Implementations

impl AsByteSequence for SetOfGroup[src]

impl BitAnd<SetOfGroup> for SetOfGroup[src]

type Output = SetOfGroup

The resulting type after applying the & operator.

impl Clone for SetOfGroup[src]

impl Copy for SetOfGroup[src]

impl Debug for SetOfGroup[src]

impl Default for SetOfGroup[src]

impl Eq for SetOfGroup[src]

impl Not for SetOfGroup[src]

type Output = SetOfGroup

The resulting type after applying the ! operator.

impl Ord for SetOfGroup[src]

impl PartialEq<SetOfGroup> for SetOfGroup[src]

impl PartialOrd<SetOfGroup> for SetOfGroup[src]

impl StructuralEq for SetOfGroup[src]

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