Struct keyboard_types::CompositionEvent
[−]
[src]
pub struct CompositionEvent { pub state: CompositionState, pub data: String, }
Event to expose input methods to program logic.
Provides information about entered sequences from dead key combinations and IMEs.
Fields
state: CompositionState
data: String
Current composition data. May be empty.
Trait Implementations
impl Clone for CompositionEvent
[src]
fn clone(&self) -> CompositionEvent
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl Debug for CompositionEvent
[src]
impl Eq for CompositionEvent
[src]
impl PartialEq for CompositionEvent
[src]
fn eq(&self, __arg_0: &CompositionEvent) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &CompositionEvent) -> bool
This method tests for !=
.