pub struct InputKeyMap {
pub accept_suggestion: Binding,
pub next: Binding,
pub prev: Binding,
pub submit: Binding,
}Expand description
Keybindings for input fields.
Fields§
§accept_suggestion: BindingAccept autocomplete suggestion.
next: BindingGo to next field.
prev: BindingGo to previous field.
submit: BindingSubmit the form.
Trait Implementations§
Source§impl Clone for InputKeyMap
impl Clone for InputKeyMap
Source§fn clone(&self) -> InputKeyMap
fn clone(&self) -> InputKeyMap
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 InputKeyMap
impl Debug for InputKeyMap
Auto Trait Implementations§
impl Freeze for InputKeyMap
impl RefUnwindSafe for InputKeyMap
impl Send for InputKeyMap
impl Sync for InputKeyMap
impl Unpin for InputKeyMap
impl UnwindSafe for InputKeyMap
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