pub trait InputMethodEditorClientProxyInterface: Send + Sync {
// Required methods
fn did_update_state(
&self,
state: &mut TextInputState,
event: Option<&mut InputEvent>
) -> Result<(), Error>;
fn on_action(&self, action: InputMethodAction) -> Result<(), Error>;
}