pub struct MutantResult {
pub mutant: Mutant,
pub killed: bool,
pub timed_out: bool,
}Expand description
Result of testing a single mutant.
Fields§
§mutant: MutantThe mutant that was tested.
killed: boolWhether the mutant was killed (verify failed = good).
timed_out: boolWhether the verify command timed out.
Trait Implementations§
Source§impl Clone for MutantResult
impl Clone for MutantResult
Source§fn clone(&self) -> MutantResult
fn clone(&self) -> MutantResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MutantResult
impl RefUnwindSafe for MutantResult
impl Send for MutantResult
impl Sync for MutantResult
impl Unpin for MutantResult
impl UnsafeUnpin for MutantResult
impl UnwindSafe for MutantResult
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