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§
Source§impl TextFieldValue
impl TextFieldValue
Sourcepub fn new(text: impl Into<String>) -> TextFieldValue
pub fn new(text: impl Into<String>) -> TextFieldValue
Creates a new value with the given text and cursor at end.
Sourcepub fn with_selection(
text: impl Into<String>,
selection: TextRange,
) -> TextFieldValue
pub fn with_selection( text: impl Into<String>, selection: TextRange, ) -> TextFieldValue
Creates a value with specified text and selection.
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 (const: unstable) · 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
impl Eq for TextFieldValue
Source§impl PartialEq for TextFieldValue
impl PartialEq 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 UnsafeUnpin 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