pub trait ImeServiceLocalServerHandler<___T: Transport = Channel> {
// Required methods
fn get_input_method_editor(
&mut self,
request: Request<GetInputMethodEditor, ___T>,
) -> impl Future<Output = ()>;
fn show_keyboard(&mut self) -> impl Future<Output = ()>;
fn hide_keyboard(&mut self) -> impl Future<Output = ()>;
}Expand description
A server handler for the ImeService protocol.
See ImeService for more details.
Required Methods§
fn get_input_method_editor( &mut self, request: Request<GetInputMethodEditor, ___T>, ) -> impl Future<Output = ()>
fn show_keyboard(&mut self) -> impl Future<Output = ()>
fn hide_keyboard(&mut self) -> impl Future<Output = ()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".