pub struct RadarData {
pub complexity: f64,
pub duplication: f64,
pub naming: f64,
pub panic_risk: f64,
pub dependency_hell: f64,
pub legacy_smell: f64,
}Expand description
Radar chart dimensions.
Fields§
§complexity: f64§duplication: f64§naming: f64§panic_risk: f64§dependency_hell: f64§legacy_smell: f64Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RadarData
impl RefUnwindSafe for RadarData
impl Send for RadarData
impl Sync for RadarData
impl Unpin for RadarData
impl UnsafeUnpin for RadarData
impl UnwindSafe for RadarData
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