Struct llvm_cov_json::InstantiationSummary
source · pub struct InstantiationSummary {
pub count: u64,
pub covered: u64,
pub percent: f32,
}Expand description
Summary of the instations metric.
Fields§
§count: u64Number of instations, i.e., total count of macros that have been instantiated.
covered: u64Number of macro instantiations that have been covered.
percent: f32Fraction of instantiations that have been covered in percent.
Trait Implementations§
source§impl Debug for InstantiationSummary
impl Debug for InstantiationSummary
source§impl<'de> Deserialize<'de> for InstantiationSummary
impl<'de> Deserialize<'de> for InstantiationSummary
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 InstantiationSummary
impl PartialEq for InstantiationSummary
source§fn eq(&self, other: &InstantiationSummary) -> bool
fn eq(&self, other: &InstantiationSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for InstantiationSummary
Auto Trait Implementations§
impl RefUnwindSafe for InstantiationSummary
impl Send for InstantiationSummary
impl Sync for InstantiationSummary
impl Unpin for InstantiationSummary
impl UnwindSafe for InstantiationSummary
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