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

#[repr(transparent)]pub struct SwitchScreenFlag {
    pub inner: i32,
}

Fields

inner: i32

Implementations

impl SwitchScreenFlag[src]

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

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

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

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

pub fn new(application: bool, absolute: bool) -> Self[src]

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

Trait Implementations

impl AsByteSequence for SwitchScreenFlag[src]

impl BitAnd<SwitchScreenFlag> for SwitchScreenFlag[src]

type Output = SwitchScreenFlag

The resulting type after applying the & operator.

impl Clone for SwitchScreenFlag[src]

impl Copy for SwitchScreenFlag[src]

impl Debug for SwitchScreenFlag[src]

impl Default for SwitchScreenFlag[src]

impl Eq for SwitchScreenFlag[src]

impl Not for SwitchScreenFlag[src]

type Output = SwitchScreenFlag

The resulting type after applying the ! operator.

impl Ord for SwitchScreenFlag[src]

impl PartialEq<SwitchScreenFlag> for SwitchScreenFlag[src]

impl PartialOrd<SwitchScreenFlag> for SwitchScreenFlag[src]

impl StructuralEq for SwitchScreenFlag[src]

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