pub struct FileHealth {
pub path: PathBuf,
pub score: f64,
pub grade: Grade,
pub top_issue: HealthDimension,
pub dimensions: Vec<DimensionScore>,
}Fields§
§path: PathBuf§score: f64§grade: Grade§top_issue: HealthDimension§dimensions: Vec<DimensionScore>Trait Implementations§
Source§impl Clone for FileHealth
impl Clone for FileHealth
Source§fn clone(&self) -> FileHealth
fn clone(&self) -> FileHealth
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 FileHealth
impl Debug for FileHealth
Auto Trait Implementations§
impl Freeze for FileHealth
impl RefUnwindSafe for FileHealth
impl Send for FileHealth
impl Sync for FileHealth
impl Unpin for FileHealth
impl UnsafeUnpin for FileHealth
impl UnwindSafe for FileHealth
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