pub enum Comparison {
Add(PathBuf),
Remove(PathBuf),
Change(PathBuf, Vec<String>),
}Variants§
Add(PathBuf)
The file was added.
Remove(PathBuf)
The file was removed.
Change(PathBuf, Vec<String>)
There are changes to the file.
Auto Trait Implementations§
impl Freeze for Comparison
impl RefUnwindSafe for Comparison
impl Send for Comparison
impl Sync for Comparison
impl Unpin for Comparison
impl UnwindSafe for Comparison
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