Struct Keyboard
pub struct Keyboard(/* private fields */);๐Deprecated
Expand description
Keyboard declares the messages dispatched to the nodes when Kanzi handles a hardware key event. The key events handled by Kanzi are the press and release events. These key events are converted into KeyDownMessage and KeyUpMessage, that includes the translated logical key value and the key modifiers. Key modifiers are special keys that modify the logical key meaning when pressed together with that logical key. Deprecated: In Kanzi 3.8. To handle key messages, use KeyManipulator.
Trait Implementationsยง
ยงimpl MetaclassConstraint for Keyboard
impl MetaclassConstraint for Keyboard
ยงfn get_static_metaclass() -> &'static Metaclass
fn get_static_metaclass() -> &'static Metaclass
Gets metaclass associated with a given type.
Auto Trait Implementationsยง
impl Freeze for Keyboard
impl RefUnwindSafe for Keyboard
impl Send for Keyboard
impl Sync for Keyboard
impl Unpin for Keyboard
impl UnwindSafe for Keyboard
Blanket Implementationsยง
Sourceยงimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Sourceยงfn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more