pub struct IMEOutput {
pub rect: Rect,
pub cursor_rect: Rect,
}
Expand description
Information about text being edited.
Useful for IME.
Fields§
§rect: Rect
Where the crate::TextEdit
is located on screen.
cursor_rect: Rect
Where the primary cursor is.
This is a very thin rectangle.
Trait Implementations§
source§impl PartialEq for IMEOutput
impl PartialEq for IMEOutput
impl Copy for IMEOutput
impl Eq for IMEOutput
impl StructuralEq for IMEOutput
impl StructuralPartialEq for IMEOutput
Auto Trait Implementations§
impl RefUnwindSafe for IMEOutput
impl Send for IMEOutput
impl Sync for IMEOutput
impl Unpin for IMEOutput
impl UnwindSafe for IMEOutput
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