pub struct FileHotspot {
pub path: PathBuf,
pub language: String,
pub churn: ChurnMetrics,
pub complexity: Complexity,
pub hotspot_score: f64,
pub risk: RiskLevel,
}Fields§
§path: PathBuf§language: String§churn: ChurnMetrics§complexity: Complexity§hotspot_score: f64§risk: RiskLevelTrait Implementations§
Source§impl Clone for FileHotspot
impl Clone for FileHotspot
Source§fn clone(&self) -> FileHotspot
fn clone(&self) -> FileHotspot
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 FileHotspot
impl Debug for FileHotspot
Auto Trait Implementations§
impl Freeze for FileHotspot
impl RefUnwindSafe for FileHotspot
impl Send for FileHotspot
impl Sync for FileHotspot
impl Unpin for FileHotspot
impl UnsafeUnpin for FileHotspot
impl UnwindSafe for FileHotspot
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