pub struct UndoApplyStep {
pub batch_id: u64,
pub entry_id: u64,
pub description: String,
}Expand description
One entry as the apply engine will visit it (batch order fixed; entry order depends on undo vs redo).
Fields§
§batch_id: u64§entry_id: u64§description: StringTrait Implementations§
Source§impl Clone for UndoApplyStep
impl Clone for UndoApplyStep
Source§fn clone(&self) -> UndoApplyStep
fn clone(&self) -> UndoApplyStep
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UndoApplyStep
impl Debug for UndoApplyStep
impl Eq for UndoApplyStep
Source§impl PartialEq for UndoApplyStep
impl PartialEq for UndoApplyStep
impl StructuralPartialEq for UndoApplyStep
Auto Trait Implementations§
impl Freeze for UndoApplyStep
impl RefUnwindSafe for UndoApplyStep
impl Send for UndoApplyStep
impl Sync for UndoApplyStep
impl Unpin for UndoApplyStep
impl UnsafeUnpin for UndoApplyStep
impl UnwindSafe for UndoApplyStep
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