pub struct TextKeyMap {
pub next: Binding,
pub prev: Binding,
pub new_line: Binding,
pub editor: Binding,
pub submit: Binding,
pub uppercase_word_forward: Binding,
pub lowercase_word_forward: Binding,
pub capitalize_word_forward: Binding,
pub transpose_character_backward: Binding,
}Expand description
Keybindings for text area fields.
Fields§
§next: BindingGo to next field.
prev: BindingGo to previous field.
new_line: BindingInsert a new line.
editor: BindingOpen external editor.
submit: BindingSubmit the form.
uppercase_word_forward: BindingUppercase word forward.
lowercase_word_forward: BindingLowercase word forward.
capitalize_word_forward: BindingCapitalize word forward.
transpose_character_backward: BindingTranspose character backward.
Trait Implementations§
Source§impl Clone for TextKeyMap
impl Clone for TextKeyMap
Source§fn clone(&self) -> TextKeyMap
fn clone(&self) -> TextKeyMap
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 TextKeyMap
impl Debug for TextKeyMap
Auto Trait Implementations§
impl Freeze for TextKeyMap
impl RefUnwindSafe for TextKeyMap
impl Send for TextKeyMap
impl Sync for TextKeyMap
impl Unpin for TextKeyMap
impl UnwindSafe for TextKeyMap
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