pub struct ChromebookKeyboardHandler {
pub inspect_status: InputHandlerStatus,
/* private fields */
}
Expand description
A Chromebook dedicated keyboard handler.
Create a new instance with ChromebookKeyboardHandler::new.
Fields§
§inspect_status: InputHandlerStatus
The inventory of this handler’s Inspect status.
Implementations§
Trait Implementations§
Source§impl Debug for ChromebookKeyboardHandler
impl Debug for ChromebookKeyboardHandler
Source§impl Default for ChromebookKeyboardHandler
impl Default for ChromebookKeyboardHandler
Source§fn default() -> ChromebookKeyboardHandler
fn default() -> ChromebookKeyboardHandler
Returns the “default value” for a type. Read more
Source§impl UnhandledInputHandler for ChromebookKeyboardHandler
impl UnhandledInputHandler for ChromebookKeyboardHandler
Source§fn handle_unhandled_input_event<'async_trait>(
self: Rc<Self>,
input_event: UnhandledInputEvent,
) -> Pin<Box<dyn Future<Output = Vec<InputEvent>> + 'async_trait>>where
Self: 'async_trait,
fn handle_unhandled_input_event<'async_trait>(
self: Rc<Self>,
input_event: UnhandledInputEvent,
) -> Pin<Box<dyn Future<Output = Vec<InputEvent>> + 'async_trait>>where
Self: 'async_trait,
Returns a vector of InputEvents to propagate to the next InputHandler. Read more
fn set_handler_healthy(self: Rc<Self>)
fn set_handler_unhealthy(self: Rc<Self>, msg: &str)
Auto Trait Implementations§
impl !Freeze for ChromebookKeyboardHandler
impl !RefUnwindSafe for ChromebookKeyboardHandler
impl Send for ChromebookKeyboardHandler
impl !Sync for ChromebookKeyboardHandler
impl Unpin for ChromebookKeyboardHandler
impl !UnwindSafe for ChromebookKeyboardHandler
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
Source§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
Source§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
Source§impl<T> InputHandler for Twhere
T: UnhandledInputHandler,
impl<T> InputHandler for Twhere
T: UnhandledInputHandler,
Source§fn handle_input_event<'async_trait>(
self: Rc<T>,
input_event: InputEvent,
) -> Pin<Box<dyn Future<Output = Vec<InputEvent>> + 'async_trait>>where
T: 'async_trait,
fn handle_input_event<'async_trait>(
self: Rc<T>,
input_event: InputEvent,
) -> Pin<Box<dyn Future<Output = Vec<InputEvent>> + 'async_trait>>where
T: 'async_trait,
Returns a vector of InputEvents to propagate to the next InputHandler. Read more