pub struct ScoreSummary {
pub killed: u64,
pub total: u64,
}Expand description
Killed/total counts produced by an analysis pass. Used to compute the
mutation score and apply the optional --min-score CI gate.
Fields§
§killed: u64§total: u64Implementations§
Trait Implementations§
Source§impl Clone for ScoreSummary
impl Clone for ScoreSummary
Source§fn clone(&self) -> ScoreSummary
fn clone(&self) -> ScoreSummary
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 moreimpl Copy for ScoreSummary
Source§impl Default for ScoreSummary
impl Default for ScoreSummary
Source§fn default() -> ScoreSummary
fn default() -> ScoreSummary
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ScoreSummary
impl RefUnwindSafe for ScoreSummary
impl Send for ScoreSummary
impl Sync for ScoreSummary
impl Unpin for ScoreSummary
impl UnsafeUnpin for ScoreSummary
impl UnwindSafe for ScoreSummary
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