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

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

Fields

inner: u16

Implementations

impl VMod[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pub fn new(
    Zero: bool,
    One: bool,
    Two: bool,
    Three: bool,
    Four: bool,
    Five: bool,
    Six: bool,
    Seven: bool,
    Eight: bool,
    Nine: bool,
    Ten: bool,
    Eleven: bool,
    Twelve: bool,
    Thirteen: bool,
    Fourteen: bool,
    Fifteen: bool
) -> Self
[src]

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

Trait Implementations

impl AsByteSequence for VMod[src]

impl BitAnd<VMod> for VMod[src]

type Output = VMod

The resulting type after applying the & operator.

impl Clone for VMod[src]

impl Copy for VMod[src]

impl Debug for VMod[src]

impl Default for VMod[src]

impl Eq for VMod[src]

impl Not for VMod[src]

type Output = VMod

The resulting type after applying the ! operator.

impl Ord for VMod[src]

impl PartialEq<VMod> for VMod[src]

impl PartialOrd<VMod> for VMod[src]

impl StructuralEq for VMod[src]

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