pub struct CleanReport {
pub removed: Vec<PathBuf>,
}Expand description
Result of an execute_clean call.
Fields§
§removed: Vec<PathBuf>Paths the executor removed. May be a strict
subset of CleanPlan::removals if a concurrent process
removed an entry between planning and execution.
Trait Implementations§
Source§impl Clone for CleanReport
impl Clone for CleanReport
Source§fn clone(&self) -> CleanReport
fn clone(&self) -> CleanReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CleanReport
impl Debug for CleanReport
Source§impl Default for CleanReport
impl Default for CleanReport
Source§fn default() -> CleanReport
fn default() -> CleanReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CleanReport
impl RefUnwindSafe for CleanReport
impl Send for CleanReport
impl Sync for CleanReport
impl Unpin for CleanReport
impl UnsafeUnpin for CleanReport
impl UnwindSafe for CleanReport
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