pub struct DerivedRestoreReport {
pub disposition: DerivedRestoreDisposition,
pub restored_nodes: usize,
pub recovered_dirty: usize,
pub restored_receipts: usize,
pub pending_continuations: usize,
}Expand description
Evidence returned after opening derived state.
Fields§
§disposition: DerivedRestoreDispositionReuse or rebuild decision.
restored_nodes: usizeMemo nodes accepted into the live engine.
recovered_dirty: usizeRestored nodes the incremental core conservatively marked dirty.
restored_receipts: usizeRestored calculation receipts.
pending_continuations: usizeRestored automatic entries carrying restart continuations.
Trait Implementations§
Source§impl Clone for DerivedRestoreReport
impl Clone for DerivedRestoreReport
Source§fn clone(&self) -> DerivedRestoreReport
fn clone(&self) -> DerivedRestoreReport
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 moreimpl Copy for DerivedRestoreReport
Source§impl Debug for DerivedRestoreReport
impl Debug for DerivedRestoreReport
impl Eq for DerivedRestoreReport
Source§impl PartialEq for DerivedRestoreReport
impl PartialEq for DerivedRestoreReport
impl StructuralPartialEq for DerivedRestoreReport
Auto Trait Implementations§
impl Freeze for DerivedRestoreReport
impl RefUnwindSafe for DerivedRestoreReport
impl Send for DerivedRestoreReport
impl Sync for DerivedRestoreReport
impl Unpin for DerivedRestoreReport
impl UnsafeUnpin for DerivedRestoreReport
impl UnwindSafe for DerivedRestoreReport
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