[][src]Struct zinc64_emu::device::keyboard::Keyboard

pub struct Keyboard { /* fields omitted */ }

Methods

impl Keyboard[src]

pub fn new(matrix: Shared<[u8; 16]>) -> Self[src]

pub fn get_col(&self, col: u8) -> u8[src]

pub fn get_row(&self, row: u8) -> u8[src]

pub fn drain_event(&mut self)[src]

pub fn enqueue(&mut self, str: &str)[src]

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

pub fn reset(&mut self)[src]

pub fn set_key(&mut self, keycode: Key, enabled: bool)[src]

pub fn set_matrix(&mut self, mapping: (usize, usize), enabled: bool)[src]

pub fn on_key_down(&mut self, event: KeyEvent)[src]

pub fn on_key_up(&mut self, event: KeyEvent)[src]

Auto Trait Implementations

impl !Send for Keyboard

impl !Sync for Keyboard

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]