ori::core::event

Trait IsKey

Source
pub trait IsKey {
    // Required method
    fn is(&self, key: Key, code: Option<Code>) -> bool;
}
Expand description

A trait for checking if something is a certain key.

Required Methods§

Source

fn is(&self, key: Key, code: Option<Code>) -> bool

Check if the key is the given key.

Implementations on Foreign Types§

Source§

impl IsKey for char

Source§

fn is(&self, key: Key, _: Option<Code>) -> bool

Source§

impl<T> IsKey for &T
where T: IsKey,

Source§

fn is(&self, key: Key, code: Option<Code>) -> bool

Source§

impl<T> IsKey for &mut T
where T: IsKey,

Source§

fn is(&self, key: Key, code: Option<Code>) -> bool

Implementors§