Trait InputMethodHandler

Source
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§

Source

fn handle_done( &mut self, qh: &QueueHandle<Self>, input_method: &XxInputMethodV1, state: &InputMethodEventState, )

Source

fn handle_unavailable( &mut self, qh: &QueueHandle<Self>, input_method: &XxInputMethodV1, )

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.

Implementors§