pub struct PrunePackedOptions {
pub dry_run: bool,
pub quiet: bool,
}Expand description
Options controlling the behaviour of prune_packed_objects.
Fields§
§dry_run: boolWhen true, print what would be deleted without actually deleting.
quiet: boolWhen true, suppress informational output.
Trait Implementations§
Source§impl Clone for PrunePackedOptions
impl Clone for PrunePackedOptions
Source§fn clone(&self) -> PrunePackedOptions
fn clone(&self) -> PrunePackedOptions
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 PrunePackedOptions
impl Debug for PrunePackedOptions
Source§impl Default for PrunePackedOptions
impl Default for PrunePackedOptions
Source§fn default() -> PrunePackedOptions
fn default() -> PrunePackedOptions
Returns the “default value” for a type. Read more
impl Copy for PrunePackedOptions
Auto Trait Implementations§
impl Freeze for PrunePackedOptions
impl RefUnwindSafe for PrunePackedOptions
impl Send for PrunePackedOptions
impl Sync for PrunePackedOptions
impl Unpin for PrunePackedOptions
impl UnsafeUnpin for PrunePackedOptions
impl UnwindSafe for PrunePackedOptions
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