pub enum TextInputAction {
Change(String),
Return(String),
Escape,
KeyFocus,
KeyFocusLost,
None,
}Variants§
Trait Implementations§
Source§impl Clone for TextInputAction
impl Clone for TextInputAction
Source§fn clone(&self) -> TextInputAction
fn clone(&self) -> TextInputAction
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 Default for TextInputAction
impl Default for TextInputAction
Source§impl Into<Box<dyn WidgetAction>> for TextInputAction
impl Into<Box<dyn WidgetAction>> for TextInputAction
Source§fn into(self) -> Box<dyn WidgetAction>
fn into(self) -> Box<dyn WidgetAction>
Converts this type into the (usually inferred) input type.
Source§impl PartialEq for TextInputAction
impl PartialEq for TextInputAction
impl StructuralPartialEq for TextInputAction
Auto Trait Implementations§
impl Freeze for TextInputAction
impl RefUnwindSafe for TextInputAction
impl Send for TextInputAction
impl Sync for TextInputAction
impl Unpin for TextInputAction
impl UnwindSafe for TextInputAction
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