pub struct FullRecomputeOutputMismatch {
pub key: OutputKey,
pub incremental_present: bool,
pub recomputed_present: bool,
}Expand description
Materialized-output divergence found by a full-recompute check.
Fields§
§key: OutputKeyOutput key whose payload diverged.
incremental_present: boolWhether committed incremental state had a payload for the output.
recomputed_present: boolWhether full recompute produced a payload for the output.
Trait Implementations§
Source§impl Clone for FullRecomputeOutputMismatch
impl Clone for FullRecomputeOutputMismatch
Source§fn clone(&self) -> FullRecomputeOutputMismatch
fn clone(&self) -> FullRecomputeOutputMismatch
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 FullRecomputeOutputMismatch
Source§impl Debug for FullRecomputeOutputMismatch
impl Debug for FullRecomputeOutputMismatch
impl Eq for FullRecomputeOutputMismatch
Source§impl PartialEq for FullRecomputeOutputMismatch
impl PartialEq for FullRecomputeOutputMismatch
Source§fn eq(&self, other: &FullRecomputeOutputMismatch) -> bool
fn eq(&self, other: &FullRecomputeOutputMismatch) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FullRecomputeOutputMismatch
Auto Trait Implementations§
impl Freeze for FullRecomputeOutputMismatch
impl RefUnwindSafe for FullRecomputeOutputMismatch
impl Send for FullRecomputeOutputMismatch
impl Sync for FullRecomputeOutputMismatch
impl Unpin for FullRecomputeOutputMismatch
impl UnsafeUnpin for FullRecomputeOutputMismatch
impl UnwindSafe for FullRecomputeOutputMismatch
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