pub struct GenericSummary {
pub count: usize,
pub covered: usize,
pub percent: f64,
}Fields§
§count: usize§covered: usize§percent: f64Trait Implementations§
Source§impl Clone for GenericSummary
impl Clone for GenericSummary
Source§fn clone(&self) -> GenericSummary
fn clone(&self) -> GenericSummary
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GenericSummary
impl Debug for GenericSummary
Source§impl<'de> Deserialize<'de> for GenericSummary
impl<'de> Deserialize<'de> for GenericSummary
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 Serialize for GenericSummary
impl Serialize for GenericSummary
impl Copy for GenericSummary
Auto Trait Implementations§
impl Freeze for GenericSummary
impl RefUnwindSafe for GenericSummary
impl Send for GenericSummary
impl Sync for GenericSummary
impl Unpin for GenericSummary
impl UnwindSafe for GenericSummary
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