pub struct FileChurn {
pub path: PathBuf,
pub commits: usize,
pub lines_added: usize,
pub lines_deleted: usize,
}Expand description
File change frequency data.
Fields§
§path: PathBuf§commits: usize§lines_added: usize§lines_deleted: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for FileChurn
impl RefUnwindSafe for FileChurn
impl Send for FileChurn
impl Sync for FileChurn
impl Unpin for FileChurn
impl UnsafeUnpin for FileChurn
impl UnwindSafe for FileChurn
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