pub struct OracleMismatch<S> {
pub expected: S,
pub actual: S,
}Expand description
Full-recompute oracle mismatch.
Fields§
§expected: SState produced by full recompute.
actual: SState observed from the incremental graph.
Trait Implementations§
Source§impl<S: Clone> Clone for OracleMismatch<S>
impl<S: Clone> Clone for OracleMismatch<S>
Source§fn clone(&self) -> OracleMismatch<S>
fn clone(&self) -> OracleMismatch<S>
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<S: Debug> Debug for OracleMismatch<S>
impl<S: Debug> Debug for OracleMismatch<S>
impl<S: Eq> Eq for OracleMismatch<S>
Source§impl<S: PartialEq> PartialEq for OracleMismatch<S>
impl<S: PartialEq> PartialEq for OracleMismatch<S>
Source§fn eq(&self, other: &OracleMismatch<S>) -> bool
fn eq(&self, other: &OracleMismatch<S>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<S: PartialEq> StructuralPartialEq for OracleMismatch<S>
Auto Trait Implementations§
impl<S> Freeze for OracleMismatch<S>where
S: Freeze,
impl<S> RefUnwindSafe for OracleMismatch<S>where
S: RefUnwindSafe,
impl<S> Send for OracleMismatch<S>where
S: Send,
impl<S> Sync for OracleMismatch<S>where
S: Sync,
impl<S> Unpin for OracleMismatch<S>where
S: Unpin,
impl<S> UnsafeUnpin for OracleMismatch<S>where
S: UnsafeUnpin,
impl<S> UnwindSafe for OracleMismatch<S>where
S: UnwindSafe,
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