Skip to main content

ImeServiceServerHandler

Trait ImeServiceServerHandler 

Source
pub trait ImeServiceServerHandler<___T: Transport = Channel> {
    // Required methods
    fn get_input_method_editor(
        &mut self,
        request: Request<GetInputMethodEditor, ___T>,
    ) -> impl Future<Output = ()> + Send;
    fn show_keyboard(&mut self) -> impl Future<Output = ()> + Send;
    fn hide_keyboard(&mut self) -> impl Future<Output = ()> + Send;
}
Expand description

A server handler for the ImeService protocol.

See ImeService for more details.

Required Methods§

Source

fn get_input_method_editor( &mut self, request: Request<GetInputMethodEditor, ___T>, ) -> impl Future<Output = ()> + Send

Source

fn show_keyboard(&mut self) -> impl Future<Output = ()> + Send

Source

fn hide_keyboard(&mut self) -> impl Future<Output = ()> + Send

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§