pub struct FileCoverageDelta {
pub path: PathBuf,
pub old_percentage: f64,
pub new_percentage: f64,
pub delta: f64,
}Expand description
Coverage change for a single file.
Fields§
§path: PathBuf§old_percentage: f64§new_percentage: f64§delta: f64Trait Implementations§
Source§impl Clone for FileCoverageDelta
impl Clone for FileCoverageDelta
Source§fn clone(&self) -> FileCoverageDelta
fn clone(&self) -> FileCoverageDelta
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for FileCoverageDelta
impl RefUnwindSafe for FileCoverageDelta
impl Send for FileCoverageDelta
impl Sync for FileCoverageDelta
impl Unpin for FileCoverageDelta
impl UnsafeUnpin for FileCoverageDelta
impl UnwindSafe for FileCoverageDelta
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