pub enum ImePhase {
Start,
Update,
Commit,
Cancel,
}Expand description
IME composition lifecycle phase.
Variants§
Start
Composition started; preedit is active.
Update
Preedit text changed.
Commit
Composition committed text to the input stream.
Cancel
Composition was canceled.
Trait Implementations§
impl Copy for ImePhase
impl Eq for ImePhase
impl StructuralPartialEq for ImePhase
Auto Trait Implementations§
impl Freeze for ImePhase
impl RefUnwindSafe for ImePhase
impl Send for ImePhase
impl Sync for ImePhase
impl Unpin for ImePhase
impl UnsafeUnpin for ImePhase
impl UnwindSafe for ImePhase
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more