pub trait IsKey { // Required method fn is(&self, key: Key, code: Option<Code>) -> bool; }
A trait for checking if something is a certain key.
Check if the key is the given key.