pub struct FileAgeStats {
pub newest_files: Vec<(PathBuf, String)>,
pub oldest_files: Vec<(PathBuf, String)>,
pub most_modified_files: Vec<(PathBuf, usize)>,
}
Fields§
§newest_files: Vec<(PathBuf, String)>
§oldest_files: Vec<(PathBuf, String)>
§most_modified_files: Vec<(PathBuf, usize)>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FileAgeStats
impl RefUnwindSafe for FileAgeStats
impl Send for FileAgeStats
impl Sync for FileAgeStats
impl Unpin for FileAgeStats
impl UnwindSafe for FileAgeStats
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