pub trait KeyboardDataExt: Send + Sync {
    type State: 'static;

    // Required methods
    fn keyboard_data(&self) -> &KeyboardData<Self::State>;
    fn keyboard_data_mut(&mut self) -> &mut KeyboardData<Self::State>;
}

Required Associated Types§

source

type State: 'static

Required Methods§

source

fn keyboard_data(&self) -> &KeyboardData<Self::State>

source

fn keyboard_data_mut(&mut self) -> &mut KeyboardData<Self::State>

Implementors§

source§

impl<T: 'static> KeyboardDataExt for KeyboardData<T>

§

type State = T