pub struct UndoOutcome {
pub restored: CheckpointRecord,
pub safety: CheckpointRecord,
pub trackers: Vec<UndoTrackerOutcome>,
pub resources: Vec<UndoResourceOutcome>,
pub recovery_record: Option<Utf8PathBuf>,
pub warnings: Vec<String>,
}Fields§
§restored: CheckpointRecordThe checkpoint that was restored.
safety: CheckpointRecordSafety checkpoint taken first — restoring it again is redo.
trackers: Vec<UndoTrackerOutcome>§resources: Vec<UndoResourceOutcome>§recovery_record: Option<Utf8PathBuf>Written when any resource restore failed.
warnings: Vec<String>Trait Implementations§
Source§impl Clone for UndoOutcome
impl Clone for UndoOutcome
Source§fn clone(&self) -> UndoOutcome
fn clone(&self) -> UndoOutcome
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 UndoOutcome
impl Debug for UndoOutcome
impl Eq for UndoOutcome
Source§impl PartialEq for UndoOutcome
impl PartialEq for UndoOutcome
impl StructuralPartialEq for UndoOutcome
Auto Trait Implementations§
impl Freeze for UndoOutcome
impl RefUnwindSafe for UndoOutcome
impl Send for UndoOutcome
impl Sync for UndoOutcome
impl Unpin for UndoOutcome
impl UnsafeUnpin for UndoOutcome
impl UnwindSafe for UndoOutcome
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