pub struct ChangedContentVisitReport {
pub content: ContentVisitReport,
pub removed: Vec<String>,
}Expand description
Content and removals produced by a safe file-only watcher plan.
Fields§
§content: ContentVisitReportEvidence for the changed files that still exist and remain selected.
Its revision describes this changed-file subset, not the complete repository manifest.
removed: Vec<String>Stable normalized paths that disappeared from the repository.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ChangedContentVisitReport
impl RefUnwindSafe for ChangedContentVisitReport
impl Send for ChangedContentVisitReport
impl Sync for ChangedContentVisitReport
impl Unpin for ChangedContentVisitReport
impl UnsafeUnpin for ChangedContentVisitReport
impl UnwindSafe for ChangedContentVisitReport
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