pub struct RegionSummary {
pub count: u64,
pub covered: u64,
pub notcovered: u64,
pub percent: f32,
}
Expand description
Summary of the regions metric.
Fields§
§count: u64
Number of total regions.
covered: u64
Number of covered regions.
notcovered: u64
Number of the regions that have not been covered.
percent: f32
Fraction 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
impl StructuralPartialEq for RegionSummary
Auto Trait Implementations§
impl Freeze for RegionSummary
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