pub struct DerivedReport {Show 19 fields
pub totals: DerivedTotals,
pub doc_density: RatioReport,
pub whitespace: RatioReport,
pub verbosity: RateReport,
pub max_file: MaxFileReport,
pub lang_purity: LangPurityReport,
pub nesting: NestingReport,
pub test_density: TestDensityReport,
pub boilerplate: BoilerplateReport,
pub polyglot: PolyglotReport,
pub distribution: DistributionReport,
pub histogram: Vec<HistogramBucket>,
pub top: TopOffenders,
pub tree: Option<String>,
pub reading_time: ReadingTimeReport,
pub context_window: Option<ContextWindowReport>,
pub cocomo: Option<CocomoReport>,
pub todo: Option<TodoReport>,
pub integrity: IntegrityReport,
}Fields§
§totals: DerivedTotals§doc_density: RatioReport§whitespace: RatioReport§verbosity: RateReport§max_file: MaxFileReport§lang_purity: LangPurityReport§nesting: NestingReport§test_density: TestDensityReport§boilerplate: BoilerplateReport§polyglot: PolyglotReport§distribution: DistributionReport§histogram: Vec<HistogramBucket>§top: TopOffenders§tree: Option<String>§reading_time: ReadingTimeReport§context_window: Option<ContextWindowReport>§cocomo: Option<CocomoReport>§todo: Option<TodoReport>§integrity: IntegrityReportTrait Implementations§
Source§impl Clone for DerivedReport
impl Clone for DerivedReport
Source§fn clone(&self) -> DerivedReport
fn clone(&self) -> DerivedReport
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 DerivedReport
impl Debug for DerivedReport
Source§impl<'de> Deserialize<'de> for DerivedReport
impl<'de> Deserialize<'de> for DerivedReport
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 DerivedReport
impl RefUnwindSafe for DerivedReport
impl Send for DerivedReport
impl Sync for DerivedReport
impl Unpin for DerivedReport
impl UnwindSafe for DerivedReport
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