pub struct ExplorationStats {
pub global_energy: i64,
pub total_timelines: u64,
pub fork_points: u64,
pub bug_found: u64,
pub realloc_pool_remaining: i64,
}Expand description
Snapshot of exploration statistics for test assertions.
Fields§
§global_energy: i64Remaining global energy.
total_timelines: u64Total timelines explored.
fork_points: u64Total fork points triggered.
bug_found: u64Number of bugs found.
realloc_pool_remaining: i64Energy remaining in the reallocation pool (0 when adaptive is disabled).
Trait Implementations§
Source§impl Clone for ExplorationStats
impl Clone for ExplorationStats
Source§fn clone(&self) -> ExplorationStats
fn clone(&self) -> ExplorationStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ExplorationStats
impl RefUnwindSafe for ExplorationStats
impl Send for ExplorationStats
impl Sync for ExplorationStats
impl Unpin for ExplorationStats
impl UnsafeUnpin for ExplorationStats
impl UnwindSafe for ExplorationStats
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