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

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

Fields

inner: u8

Implementations

impl VModsHigh[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(
    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 VModsHigh[src]

impl BitAnd<VModsHigh> for VModsHigh[src]

type Output = VModsHigh

The resulting type after applying the & operator.

impl Clone for VModsHigh[src]

impl Copy for VModsHigh[src]

impl Debug for VModsHigh[src]

impl Default for VModsHigh[src]

impl Eq for VModsHigh[src]

impl Not for VModsHigh[src]

type Output = VModsHigh

The resulting type after applying the ! operator.

impl Ord for VModsHigh[src]

impl PartialEq<VModsHigh> for VModsHigh[src]

impl PartialOrd<VModsHigh> for VModsHigh[src]

impl StructuralEq for VModsHigh[src]

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