pub enum TextInputAction {
None,
KeyFocus,
KeyFocusLost,
Returned(String, KeyModifiers),
Escaped,
Changed(String),
KeyDownUnhandled(KeyEvent),
}
Variants§
None
KeyFocus
KeyFocusLost
Returned(String, KeyModifiers)
Escaped
Changed(String)
KeyDownUnhandled(KeyEvent)
Trait Implementations§
Source§impl ActionDefaultRef for TextInputAction
impl ActionDefaultRef for TextInputAction
fn default_ref() -> &'static Self
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 Debug for TextInputAction
impl Debug 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> ActionTrait for T
impl<T> ActionTrait for T
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