pub trait InputMethodHandler: Sized {
// Required methods
fn handle_done(
&self,
connection: &Connection,
qh: &QueueHandle<Self>,
input_method: &ZwpInputMethodV2,
state: &InputMethodEventState,
);
fn handle_unavailable(
&self,
connection: &Connection,
qh: &QueueHandle<Self>,
input_method: &ZwpInputMethodV2,
);
}
Required Methods§
fn handle_done( &self, connection: &Connection, qh: &QueueHandle<Self>, input_method: &ZwpInputMethodV2, 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.