pub struct BugRecipe {
pub seed: u64,
pub recipe: Vec<(u64, u64)>,
}Expand description
A captured bug recipe with its root seed for deterministic replay.
Fields§
§seed: u64The root seed that was active when this bug was discovered.
recipe: Vec<(u64, u64)>Fork path: (rng_call_count, child_seed) pairs.
Trait Implementations§
impl StructuralPartialEq for BugRecipe
Auto Trait Implementations§
impl Freeze for BugRecipe
impl RefUnwindSafe for BugRecipe
impl Send for BugRecipe
impl Sync for BugRecipe
impl Unpin for BugRecipe
impl UnsafeUnpin for BugRecipe
impl UnwindSafe for BugRecipe
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