pub struct ProjectReport {
pub scope_name: String,
pub total_functions: usize,
pub crappy_functions: usize,
pub crappy_percent: f64,
pub verdict: Verdict,
pub functions: Vec<FunctionReport>,
}Fields§
§scope_name: String§total_functions: usize§crappy_functions: usize§crappy_percent: f64§verdict: Verdict§functions: Vec<FunctionReport>Trait Implementations§
Source§impl Clone for ProjectReport
impl Clone for ProjectReport
Source§fn clone(&self) -> ProjectReport
fn clone(&self) -> ProjectReport
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 ProjectReport
impl Debug for ProjectReport
Auto Trait Implementations§
impl Freeze for ProjectReport
impl RefUnwindSafe for ProjectReport
impl Send for ProjectReport
impl Sync for ProjectReport
impl Unpin for ProjectReport
impl UnsafeUnpin for ProjectReport
impl UnwindSafe for ProjectReport
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