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