pub enum RefreshAction {
Clean,
Touched,
MissingDeployed,
MissingSource,
}Expand description
What refresh did to a single processed file.
Variants§
Clean
Deployed file’s hash matches the baseline; nothing to do.
Touched
Source mtime was copied from the deployed file (default mode)
or would be (--list-paths mode).
MissingDeployed
Deployed file is missing from the datastore (e.g. user removed it). Reported but not actioned.
MissingSource
Cached source path no longer exists on disk. Reported.
Trait Implementations§
Source§impl Clone for RefreshAction
impl Clone for RefreshAction
Source§fn clone(&self) -> RefreshAction
fn clone(&self) -> RefreshAction
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 moreSource§impl Debug for RefreshAction
impl Debug for RefreshAction
Auto Trait Implementations§
impl Freeze for RefreshAction
impl RefUnwindSafe for RefreshAction
impl Send for RefreshAction
impl Sync for RefreshAction
impl Unpin for RefreshAction
impl UnsafeUnpin for RefreshAction
impl UnwindSafe for RefreshAction
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