pub enum DerivedRestoreDisposition {
Rehydrated,
RebuiltMissing,
RebuiltCorrupt,
RebuiltIncompatible,
RebuiltGenerationMismatch,
}Expand description
Why an open reused or conservatively rebuilt derived state.
Variants§
Rehydrated
A valid graph was rehydrated.
RebuiltMissing
No derived graph existed.
RebuiltCorrupt
The derived record was malformed or internally inconsistent.
RebuiltIncompatible
The graph schema was not understood by this calculator.
RebuiltGenerationMismatch
Authored source or operational control state did not match the graph.
Trait Implementations§
Source§impl Clone for DerivedRestoreDisposition
impl Clone for DerivedRestoreDisposition
Source§fn clone(&self) -> DerivedRestoreDisposition
fn clone(&self) -> DerivedRestoreDisposition
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 DerivedRestoreDisposition
Source§impl Debug for DerivedRestoreDisposition
impl Debug for DerivedRestoreDisposition
impl Eq for DerivedRestoreDisposition
impl StructuralPartialEq for DerivedRestoreDisposition
Auto Trait Implementations§
impl Freeze for DerivedRestoreDisposition
impl RefUnwindSafe for DerivedRestoreDisposition
impl Send for DerivedRestoreDisposition
impl Sync for DerivedRestoreDisposition
impl Unpin for DerivedRestoreDisposition
impl UnsafeUnpin for DerivedRestoreDisposition
impl UnwindSafe for DerivedRestoreDisposition
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