pub enum RecordAction {
NoRecord,
Record,
Clear,
Clearall,
}Expand description
Action to take regarding record lifecycle.
Variants§
NoRecord
No action on the record.
Record
Save the current record and start a new one.
Clear
Clear the current record (respecting Filldown).
Clearall
Clear all values in the current record including Filldown.
Trait Implementations§
Source§impl Clone for RecordAction
impl Clone for RecordAction
Source§fn clone(&self) -> RecordAction
fn clone(&self) -> RecordAction
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 RecordAction
impl Debug for RecordAction
Source§impl Default for RecordAction
impl Default for RecordAction
Source§fn default() -> RecordAction
fn default() -> RecordAction
Returns the “default value” for a type. Read more
Source§impl PartialEq for RecordAction
impl PartialEq for RecordAction
impl StructuralPartialEq for RecordAction
Auto Trait Implementations§
impl Freeze for RecordAction
impl RefUnwindSafe for RecordAction
impl Send for RecordAction
impl Sync for RecordAction
impl Unpin for RecordAction
impl UnwindSafe for RecordAction
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