pub struct MutationAttribution {
pub generated: usize,
pub runnable: usize,
pub executed: usize,
pub killed: usize,
pub survived: usize,
pub not_covered: usize,
pub timed_out: usize,
pub not_viable: usize,
pub skipped: usize,
}Fields§
§generated: usize§runnable: usize§executed: usize§killed: usize§survived: usize§not_covered: usize§timed_out: usize§not_viable: usize§skipped: usizeTrait Implementations§
Source§impl Clone for MutationAttribution
impl Clone for MutationAttribution
Source§fn clone(&self) -> MutationAttribution
fn clone(&self) -> MutationAttribution
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 moreSource§impl Debug for MutationAttribution
impl Debug for MutationAttribution
Source§impl Default for MutationAttribution
impl Default for MutationAttribution
Source§fn default() -> MutationAttribution
fn default() -> MutationAttribution
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MutationAttribution
impl<'de> Deserialize<'de> for MutationAttribution
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
Source§impl PartialEq for MutationAttribution
impl PartialEq for MutationAttribution
Source§fn eq(&self, other: &MutationAttribution) -> bool
fn eq(&self, other: &MutationAttribution) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MutationAttribution
impl Serialize for MutationAttribution
impl Eq for MutationAttribution
impl StructuralPartialEq for MutationAttribution
Auto Trait Implementations§
impl Freeze for MutationAttribution
impl RefUnwindSafe for MutationAttribution
impl Send for MutationAttribution
impl Sync for MutationAttribution
impl Unpin for MutationAttribution
impl UnsafeUnpin for MutationAttribution
impl UnwindSafe for MutationAttribution
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