pub struct TestDensityReport {
pub test_lines: usize,
pub prod_lines: usize,
pub test_files: usize,
pub prod_files: usize,
pub ratio: f64,
}Fields§
§test_lines: usize§prod_lines: usize§test_files: usize§prod_files: usize§ratio: f64Trait Implementations§
Source§impl Clone for TestDensityReport
impl Clone for TestDensityReport
Source§fn clone(&self) -> TestDensityReport
fn clone(&self) -> TestDensityReport
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 moreSource§impl Debug for TestDensityReport
impl Debug for TestDensityReport
Source§impl<'de> Deserialize<'de> for TestDensityReport
impl<'de> Deserialize<'de> for TestDensityReport
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
Auto Trait Implementations§
impl Freeze for TestDensityReport
impl RefUnwindSafe for TestDensityReport
impl Send for TestDensityReport
impl Sync for TestDensityReport
impl Unpin for TestDensityReport
impl UnwindSafe for TestDensityReport
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