pub enum FileChange {
Write(PathBuf),
Removal(PathBuf),
Other,
}Variants§
Write(PathBuf)
Creation, move inside, edition, etc.
Removal(PathBuf)
Removal, move outside, etc. but also first part of a move inside
Other
Anything else looking relevant (e.g. multiple files written) A full rebuild is probably needed
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FileChange
impl RefUnwindSafe for FileChange
impl Send for FileChange
impl Sync for FileChange
impl Unpin for FileChange
impl UnwindSafe for FileChange
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