pub struct Ime {
pub text: String,
pub selection: Range<usize>,
pub compose: Option<Range<usize>>,
pub multiline: bool,
pub capitalize: Capitalize,
}
Expand description
Input Method Editor (IME) state.
Fields§
§text: String
The current text being edited.
selection: Range<usize>
The current selection range.
compose: Option<Range<usize>>
The current composition range.
multiline: bool
Whether the IME is multiline.
capitalize: Capitalize
How the IME should capitalize text.
Trait Implementations§
impl Eq for Ime
impl StructuralPartialEq for Ime
Auto Trait Implementations§
impl Freeze for Ime
impl RefUnwindSafe for Ime
impl Send for Ime
impl Sync for Ime
impl Unpin for Ime
impl UnwindSafe for Ime
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