pub enum ReplayOutcome {
AllDynamic,
Spans(Vec<ReplaySpan>),
}Expand description
What one frame of verification decided for a command.
Variants§
AllDynamic
No retention this frame: materialize the whole recording.
Spans(Vec<ReplaySpan>)
The interleaved retained/dynamic structure of this frame, in exact tape order.
Trait Implementations§
Source§impl Debug for ReplayOutcome
impl Debug for ReplayOutcome
Source§impl PartialEq for ReplayOutcome
impl PartialEq for ReplayOutcome
impl StructuralPartialEq for ReplayOutcome
Auto Trait Implementations§
impl Freeze for ReplayOutcome
impl RefUnwindSafe for ReplayOutcome
impl Send for ReplayOutcome
impl Sync for ReplayOutcome
impl Unpin for ReplayOutcome
impl UnsafeUnpin for ReplayOutcome
impl UnwindSafe for ReplayOutcome
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