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