pub trait InputMethodHandler: Sized {
// Required methods
fn handle_done(
&mut self,
qh: &QueueHandle<Self>,
input_method: &XxInputMethodV1,
state: &InputMethodEventState,
);
fn handle_unavailable(
&mut self,
qh: &QueueHandle<Self>,
input_method: &XxInputMethodV1,
);
}
Required Methods§
fn handle_done( &mut self, qh: &QueueHandle<Self>, input_method: &XxInputMethodV1, state: &InputMethodEventState, )
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.