pub struct MutationGate {
pub meta: GateMeta,
pub survivors: Vec<MutationSurvivor>,
pub killed: usize,
pub timeout: usize,
pub unviable: usize,
}Expand description
Mutation testing gate results.
Fields§
§meta: GateMeta§survivors: Vec<MutationSurvivor>§killed: usize§timeout: usize§unviable: usizeTrait Implementations§
Source§impl Clone for MutationGate
impl Clone for MutationGate
Source§fn clone(&self) -> MutationGate
fn clone(&self) -> MutationGate
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 moreSource§impl Debug for MutationGate
impl Debug for MutationGate
Source§impl<'de> Deserialize<'de> for MutationGate
impl<'de> Deserialize<'de> for MutationGate
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MutationGate
impl RefUnwindSafe for MutationGate
impl Send for MutationGate
impl Sync for MutationGate
impl Unpin for MutationGate
impl UnsafeUnpin for MutationGate
impl UnwindSafe for MutationGate
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