pub struct FullRecomputeCheck {
pub checked_derived: Vec<NodeId>,
pub checked_collections: Vec<NodeId>,
pub checked_resources: Vec<ResourceKey>,
pub checked_outputs: Vec<OutputKey>,
}Expand description
Result of comparing incremental graph state against full recompute.
Fields§
§checked_derived: Vec<NodeId>Derived nodes checked in deterministic topological order.
checked_collections: Vec<NodeId>Collection nodes checked in deterministic topological order.
checked_resources: Vec<ResourceKey>Desired resource keys whose owner sets were checked.
checked_outputs: Vec<OutputKey>Materialized outputs whose current values were checked.
Trait Implementations§
Source§impl Clone for FullRecomputeCheck
impl Clone for FullRecomputeCheck
Source§fn clone(&self) -> FullRecomputeCheck
fn clone(&self) -> FullRecomputeCheck
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 FullRecomputeCheck
impl Debug for FullRecomputeCheck
impl Eq for FullRecomputeCheck
Source§impl PartialEq for FullRecomputeCheck
impl PartialEq for FullRecomputeCheck
Source§fn eq(&self, other: &FullRecomputeCheck) -> bool
fn eq(&self, other: &FullRecomputeCheck) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FullRecomputeCheck
Auto Trait Implementations§
impl Freeze for FullRecomputeCheck
impl RefUnwindSafe for FullRecomputeCheck
impl Send for FullRecomputeCheck
impl Sync for FullRecomputeCheck
impl Unpin for FullRecomputeCheck
impl UnsafeUnpin for FullRecomputeCheck
impl UnwindSafe for FullRecomputeCheck
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