pub struct TraceMismatch {
pub expected: Vec<TransactionTrace>,
pub actual: Vec<TransactionTrace>,
}Expand description
Difference between two replay trace sequences.
Fields§
§expected: Vec<TransactionTrace>Expected transaction traces.
actual: Vec<TransactionTrace>Actual transaction traces.
Trait Implementations§
Source§impl Clone for TraceMismatch
impl Clone for TraceMismatch
Source§fn clone(&self) -> TraceMismatch
fn clone(&self) -> TraceMismatch
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 TraceMismatch
impl Debug for TraceMismatch
impl Eq for TraceMismatch
Source§impl PartialEq for TraceMismatch
impl PartialEq for TraceMismatch
Source§fn eq(&self, other: &TraceMismatch) -> bool
fn eq(&self, other: &TraceMismatch) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TraceMismatch
Auto Trait Implementations§
impl Freeze for TraceMismatch
impl RefUnwindSafe for TraceMismatch
impl Send for TraceMismatch
impl Sync for TraceMismatch
impl Unpin for TraceMismatch
impl UnsafeUnpin for TraceMismatch
impl UnwindSafe for TraceMismatch
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