pub struct PruneReport {
pub pruned_ids: Vec<String>,
pub kept_ids: Vec<String>,
}Expand description
Result of a prune operation on the done archive.
Fields§
§pruned_ids: Vec<String>IDs of tasks that were pruned (or would be pruned in dry-run).
kept_ids: Vec<String>IDs of tasks that were kept (protected by keep-last or didn’t match filters).
Trait Implementations§
Source§impl Clone for PruneReport
impl Clone for PruneReport
Source§fn clone(&self) -> PruneReport
fn clone(&self) -> PruneReport
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 PruneReport
impl Debug for PruneReport
Source§impl Default for PruneReport
impl Default for PruneReport
Source§fn default() -> PruneReport
fn default() -> PruneReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PruneReport
impl RefUnwindSafe for PruneReport
impl Send for PruneReport
impl Sync for PruneReport
impl Unpin for PruneReport
impl UnsafeUnpin for PruneReport
impl UnwindSafe for PruneReport
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