pub struct ConfirmKeyMap {
pub next: Binding,
pub prev: Binding,
pub toggle: Binding,
pub submit: Binding,
pub accept: Binding,
pub reject: Binding,
}Expand description
Keybindings for confirm fields.
Fields§
§next: BindingGo to next field.
prev: BindingGo to previous field.
toggle: BindingToggle between yes/no.
submit: BindingSubmit the form.
accept: BindingAccept (yes).
reject: BindingReject (no).
Trait Implementations§
Source§impl Clone for ConfirmKeyMap
impl Clone for ConfirmKeyMap
Source§fn clone(&self) -> ConfirmKeyMap
fn clone(&self) -> ConfirmKeyMap
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 ConfirmKeyMap
impl Debug for ConfirmKeyMap
Auto Trait Implementations§
impl Freeze for ConfirmKeyMap
impl RefUnwindSafe for ConfirmKeyMap
impl Send for ConfirmKeyMap
impl Sync for ConfirmKeyMap
impl Unpin for ConfirmKeyMap
impl UnwindSafe for ConfirmKeyMap
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