#[repr(C)]pub struct SharedStats {
pub global_energy: AtomicI64,
pub total_timelines: AtomicU64,
pub fork_points: AtomicU64,
pub bug_found: AtomicU64,
}Expand description
Global exploration statistics in shared memory.
Fields§
§global_energy: AtomicI64Remaining global energy budget (decremented per fork).
total_timelines: AtomicU64Total number of timelines explored.
fork_points: AtomicU64Total number of fork points triggered.
bug_found: AtomicU64Number of bugs found (child exited with code 42).
Auto Trait Implementations§
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