Enum keyboard_types::CompositionState[][src]

pub enum CompositionState {
    Start,
    Update,
    End,
}

Describes the state of a composition session.

Variants

In JS: "compositionstart" event.

In JS: "compositionupdate" event.

In JS: "compositionend" event.

In a text editor in this state the data should be added to the input.

Trait Implementations

impl Copy for CompositionState
[src]

impl Clone for CompositionState
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CompositionState
[src]

Formats the value using the given formatter. Read more

impl Eq for CompositionState
[src]

impl PartialEq for CompositionState
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations