pub struct DeterministicTrace {
pub trace_hash: String,
pub step_count: usize,
pub replayable: bool,
pub non_replayable_steps: Vec<TraceStep>,
}Expand description
Canonical replay trace for deterministic simulation.
Fields§
§trace_hash: StringStable SHA-256 hash of the normalized governance, config, and scenario trace.
step_count: usizeNumber of Gherkin steps included in the trace.
replayable: boolWhether the trace is eligible for deterministic replay.
non_replayable_steps: Vec<TraceStep>Steps that reference non-replayable state.
Trait Implementations§
Source§impl Clone for DeterministicTrace
impl Clone for DeterministicTrace
Source§fn clone(&self) -> DeterministicTrace
fn clone(&self) -> DeterministicTrace
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 DeterministicTrace
impl Debug for DeterministicTrace
Source§impl Default for DeterministicTrace
impl Default for DeterministicTrace
Source§fn default() -> DeterministicTrace
fn default() -> DeterministicTrace
Returns the “default value” for a type. Read more
impl Eq for DeterministicTrace
Source§impl PartialEq for DeterministicTrace
impl PartialEq for DeterministicTrace
Source§fn eq(&self, other: &DeterministicTrace) -> bool
fn eq(&self, other: &DeterministicTrace) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeterministicTrace
Auto Trait Implementations§
impl Freeze for DeterministicTrace
impl RefUnwindSafe for DeterministicTrace
impl Send for DeterministicTrace
impl Sync for DeterministicTrace
impl Unpin for DeterministicTrace
impl UnsafeUnpin for DeterministicTrace
impl UnwindSafe for DeterministicTrace
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
Source§impl<C> CloneExpand for Cwhere
C: Clone,
impl<C> CloneExpand for Cwhere
C: Clone,
fn __expand_clone_method(&self, _scope: &mut Scope) -> C
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more