pub enum DerivedEntry {
Graph(String),
CachedValue(String),
Receipt(String),
}Expand description
Derived-store entry for rebuildable calculation artifacts.
Variants§
Graph(String)
Dependency graph materialization.
CachedValue(String)
Cached value for a calculated cell.
Receipt(String)
Calculation receipt or scheduler evidence.
Trait Implementations§
Source§impl Clone for DerivedEntry
impl Clone for DerivedEntry
Source§fn clone(&self) -> DerivedEntry
fn clone(&self) -> DerivedEntry
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 DerivedEntry
impl Debug for DerivedEntry
impl Eq for DerivedEntry
Source§impl PartialEq for DerivedEntry
impl PartialEq for DerivedEntry
impl StructuralPartialEq for DerivedEntry
Auto Trait Implementations§
impl Freeze for DerivedEntry
impl RefUnwindSafe for DerivedEntry
impl Send for DerivedEntry
impl Sync for DerivedEntry
impl Unpin for DerivedEntry
impl UnsafeUnpin for DerivedEntry
impl UnwindSafe for DerivedEntry
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