pub struct StepDiff {
pub changed: Vec<String>,
pub cached: Vec<String>,
}Expand description
Result of checking which files need re-running for a step.
Fields§
§changed: Vec<String>Files whose content hash differs from cache (or not in cache).
cached: Vec<String>Files whose content hash matches the cache.
Auto Trait Implementations§
impl Freeze for StepDiff
impl RefUnwindSafe for StepDiff
impl Send for StepDiff
impl Sync for StepDiff
impl Unpin for StepDiff
impl UnsafeUnpin for StepDiff
impl UnwindSafe for StepDiff
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