pub struct ChangeDetectionResult {
pub has_changes: bool,
pub added: usize,
pub modified: usize,
pub deleted: usize,
pub files_changed: Vec<String>,
}Expand description
Result of change detection
Fields§
§has_changes: bool§added: usize§modified: usize§deleted: usize§files_changed: Vec<String>Trait Implementations§
Source§impl Clone for ChangeDetectionResult
impl Clone for ChangeDetectionResult
Source§fn clone(&self) -> ChangeDetectionResult
fn clone(&self) -> ChangeDetectionResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ChangeDetectionResult
impl RefUnwindSafe for ChangeDetectionResult
impl Send for ChangeDetectionResult
impl Sync for ChangeDetectionResult
impl Unpin for ChangeDetectionResult
impl UnwindSafe for ChangeDetectionResult
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