pub trait KeyboardEventTraitConst {
// Required method
fn as_raw_KeyboardEvent(&self) -> *const c_void;
// Provided methods
fn action(&self) -> KeyboardEvent_Action { ... }
fn symbol(&self) -> String { ... }
fn code(&self) -> u8 { ... }
fn modifiers(&self) -> i32 { ... }
}
Expand description
Constant methods for crate::viz::KeyboardEvent