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