pub struct LineSummary {
pub count: u64,
pub covered: u64,
pub percent: f32,
}
Expand description
Summary of the lines metric.
Fields§
§count: u64
Number of lines that could be covered.
covered: u64
Number of lines that have been covered.
percent: f32
Fraction of lines that have been covered in percent.
Trait Implementations§
Source§impl Debug for LineSummary
impl Debug for LineSummary
Source§impl<'de> Deserialize<'de> for LineSummary
impl<'de> Deserialize<'de> for LineSummary
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 LineSummary
impl PartialEq for LineSummary
impl StructuralPartialEq for LineSummary
Auto Trait Implementations§
impl Freeze for LineSummary
impl RefUnwindSafe for LineSummary
impl Send for LineSummary
impl Sync for LineSummary
impl Unpin for LineSummary
impl UnwindSafe for LineSummary
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