Struct hyperpom::core::WorkerInfo
source · pub struct WorkerInfo { /* private fields */ }
Expand description
Stores information about the number of testcases, crashes and timeouts that occured during a given time interval.
This object is sent from worker threads back to the main one through an std::sync::mpsc
channel and then aggregated to generate statistics about the current fuzzing campain.
Trait Implementations
sourceimpl Add<WorkerInfo> for HyperPomInfo
impl Add<WorkerInfo> for HyperPomInfo
type Output = HyperPomInfo
type Output = HyperPomInfo
The resulting type after applying the
+
operator.sourcefn add(self, other: WorkerInfo) -> Self
fn add(self, other: WorkerInfo) -> Self
Performs the
+
operation. Read moresourceimpl AddAssign<WorkerInfo> for HyperPomInfo
impl AddAssign<WorkerInfo> for HyperPomInfo
sourcefn add_assign(&mut self, other: WorkerInfo)
fn add_assign(&mut self, other: WorkerInfo)
Performs the
+=
operation. Read moreAuto Trait Implementations
impl RefUnwindSafe for WorkerInfo
impl Send for WorkerInfo
impl Sync for WorkerInfo
impl Unpin for WorkerInfo
impl UnwindSafe for WorkerInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more