pub struct CoverageFile {
pub path: Utf8PathBuf,
pub line_coverage_percent: Option<u8>,
pub uncovered_ranges: Vec<String>,
}Fields§
§path: Utf8PathBuf§line_coverage_percent: Option<u8>§uncovered_ranges: Vec<String>Trait Implementations§
Source§impl Clone for CoverageFile
impl Clone for CoverageFile
Source§fn clone(&self) -> CoverageFile
fn clone(&self) -> CoverageFile
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CoverageFile
impl Debug for CoverageFile
Source§impl<'de> Deserialize<'de> for CoverageFile
impl<'de> Deserialize<'de> for CoverageFile
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 CoverageFile
impl PartialEq for CoverageFile
Source§fn eq(&self, other: &CoverageFile) -> bool
fn eq(&self, other: &CoverageFile) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CoverageFile
impl Serialize for CoverageFile
impl Eq for CoverageFile
impl StructuralPartialEq for CoverageFile
Auto Trait Implementations§
impl Freeze for CoverageFile
impl RefUnwindSafe for CoverageFile
impl Send for CoverageFile
impl Sync for CoverageFile
impl Unpin for CoverageFile
impl UnsafeUnpin for CoverageFile
impl UnwindSafe for CoverageFile
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