pub struct HandoffComplexity {
pub total_functions: usize,
pub avg_function_length: f64,
pub max_function_length: usize,
pub avg_cyclomatic: f64,
pub max_cyclomatic: usize,
pub high_risk_files: usize,
}Expand description
Simplified complexity report for handoff intelligence.
Fields§
§total_functions: usize§avg_function_length: f64§max_function_length: usize§avg_cyclomatic: f64§max_cyclomatic: usize§high_risk_files: usizeTrait Implementations§
Source§impl Clone for HandoffComplexity
impl Clone for HandoffComplexity
Source§fn clone(&self) -> HandoffComplexity
fn clone(&self) -> HandoffComplexity
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 HandoffComplexity
impl Debug for HandoffComplexity
Source§impl<'de> Deserialize<'de> for HandoffComplexity
impl<'de> Deserialize<'de> for HandoffComplexity
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 HandoffComplexity
impl RefUnwindSafe for HandoffComplexity
impl Send for HandoffComplexity
impl Sync for HandoffComplexity
impl Unpin for HandoffComplexity
impl UnsafeUnpin for HandoffComplexity
impl UnwindSafe for HandoffComplexity
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