pub enum ImeInput {
Enabled,
Disabled,
Preedit {
text: String,
cursor: Option<(usize, usize)>,
},
Commit(String),
}Variants§
Trait Implementations§
impl Eq for ImeInput
impl StructuralPartialEq for ImeInput
Auto Trait Implementations§
impl Freeze for ImeInput
impl RefUnwindSafe for ImeInput
impl Send for ImeInput
impl Sync for ImeInput
impl Unpin for ImeInput
impl UnsafeUnpin for ImeInput
impl UnwindSafe for ImeInput
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