pub enum TextChangeNotify {
TriggerCallbacks,
SkipCallbacks,
}
Expand description
Argument to TextInput::delete_selection
that determines whether to trigger the
edited
and cursor position callbacks and issue an input method request update.
Variants§
TriggerCallbacks
Trigger the callbacks.
SkipCallbacks
Skip triggering the callbacks, as a subsequent operation will trigger them.
Trait Implementations§
Source§impl Clone for TextChangeNotify
impl Clone for TextChangeNotify
Source§fn clone(&self) -> TextChangeNotify
fn clone(&self) -> TextChangeNotify
Returns a copy 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 PartialEq for TextChangeNotify
impl PartialEq for TextChangeNotify
impl Copy for TextChangeNotify
impl Eq for TextChangeNotify
impl StructuralPartialEq for TextChangeNotify
Auto Trait Implementations§
impl Freeze for TextChangeNotify
impl RefUnwindSafe for TextChangeNotify
impl Send for TextChangeNotify
impl Sync for TextChangeNotify
impl Unpin for TextChangeNotify
impl UnwindSafe for TextChangeNotify
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