pub enum Meta {
Added(File),
Deleted(File),
Modified {
old: File,
new: File,
},
Renamed {
old: File,
new: File,
},
Copied {
old: File,
new: File,
},
Ignored(File),
Untracked(File),
Typechange {
old: File,
new: File,
},
Unreadable(File),
Conflicted {
old: File,
new: File,
},
}
Variants§
Added(File)
Deleted(File)
Modified
Renamed
Copied
Ignored(File)
Untracked(File)
Typechange
Unreadable(File)
Conflicted
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Meta
impl RefUnwindSafe for Meta
impl Send for Meta
impl Sync for Meta
impl Unpin for Meta
impl UnwindSafe for Meta
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