pub struct FunctionReport {
pub package_name: String,
pub name: String,
pub relative_file: String,
pub line: usize,
pub complexity: u32,
pub coverage: f64,
pub crap_score: f64,
pub verdict: Verdict,
}Fields§
§package_name: String§name: String§relative_file: String§line: usize§complexity: u32§coverage: f64§crap_score: f64§verdict: VerdictTrait Implementations§
Source§impl Clone for FunctionReport
impl Clone for FunctionReport
Source§fn clone(&self) -> FunctionReport
fn clone(&self) -> FunctionReport
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 FunctionReport
impl Debug for FunctionReport
Auto Trait Implementations§
impl Freeze for FunctionReport
impl RefUnwindSafe for FunctionReport
impl Send for FunctionReport
impl Sync for FunctionReport
impl Unpin for FunctionReport
impl UnsafeUnpin for FunctionReport
impl UnwindSafe for FunctionReport
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