[][src]Struct xkb::state::Update

pub struct Update<'a>(pub &'a mut State);

Methods

impl<'a> Update<'a>[src]

pub fn key(&mut self, key: Keycode, direction: Direction) -> Components[src]

pub fn mask<M1, M2, M3, L1, L2, L3>(
    &mut self,
    depressed_mods: M1,
    latched_mods: M2,
    locked_mods: M3,
    depressed_layout: L1,
    latched_layout: L2,
    locked_layout: L3
) -> Components where
    M1: Into<ModMask>,
    M2: Into<ModMask>,
    M3: Into<ModMask>,
    L1: Into<LayoutMask>,
    L2: Into<LayoutMask>,
    L3: Into<LayoutMask>, 
[src]

Trait Implementations

impl<'a> Debug for Update<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Update<'a>

impl<'a> !Send for Update<'a>

impl<'a> !Sync for Update<'a>

impl<'a> Unpin for Update<'a>

impl<'a> !UnwindSafe for Update<'a>

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, 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.