pub struct TextFieldValue {
pub text: String,
pub selection: TextRange,
pub composition: Option<TextRange>,
}Expand description
Immutable snapshot of text field content.
This represents the text, selection, and composition state at a point in time.
Fields§
§text: StringThe text content
selection: TextRangeCurrent selection or cursor position
composition: Option<TextRange>IME composition range, if any
Implementations§
Trait Implementations§
Source§impl Clone for TextFieldValue
impl Clone for TextFieldValue
Source§fn clone(&self) -> TextFieldValue
fn clone(&self) -> TextFieldValue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TextFieldValue
impl Debug for TextFieldValue
Source§impl Default for TextFieldValue
impl Default for TextFieldValue
Source§fn default() -> TextFieldValue
fn default() -> TextFieldValue
Returns the “default value” for a type. Read more
Source§impl PartialEq for TextFieldValue
impl PartialEq for TextFieldValue
impl Eq for TextFieldValue
impl StructuralPartialEq for TextFieldValue
Auto Trait Implementations§
impl Freeze for TextFieldValue
impl RefUnwindSafe for TextFieldValue
impl Send for TextFieldValue
impl Sync for TextFieldValue
impl Unpin for TextFieldValue
impl UnwindSafe for TextFieldValue
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