pub struct BroomRunnerOptions {Show 21 fields
pub root_path: PathBuf,
pub dry_run: bool,
pub interactive: bool,
pub auto_confirm: bool,
pub keep_days: u64,
pub keep_size_bytes: Option<u64>,
pub experimental_fine: bool,
pub fine_only: bool,
pub coarse_only: bool,
pub toolchains: Vec<String>,
pub installed: bool,
pub tests_only: bool,
pub clean_incremental: bool,
pub clean_doc: bool,
pub trash: bool,
pub history: bool,
pub hidden: bool,
pub skip: Vec<String>,
pub ignore: Vec<String>,
pub output_format: OutputFormat,
pub color_mode: ColorMode,
}Fields§
§root_path: PathBuf§dry_run: bool§interactive: bool§auto_confirm: bool§keep_days: u64§keep_size_bytes: Option<u64>§experimental_fine: bool§fine_only: bool§coarse_only: bool§toolchains: Vec<String>§installed: bool§tests_only: bool§clean_incremental: bool§clean_doc: bool§trash: bool§history: bool§skip: Vec<String>§ignore: Vec<String>§output_format: OutputFormat§color_mode: ColorModeTrait Implementations§
Source§impl Clone for BroomRunnerOptions
impl Clone for BroomRunnerOptions
Source§fn clone(&self) -> BroomRunnerOptions
fn clone(&self) -> BroomRunnerOptions
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 moreAuto Trait Implementations§
impl Freeze for BroomRunnerOptions
impl RefUnwindSafe for BroomRunnerOptions
impl Send for BroomRunnerOptions
impl Sync for BroomRunnerOptions
impl Unpin for BroomRunnerOptions
impl UnsafeUnpin for BroomRunnerOptions
impl UnwindSafe for BroomRunnerOptions
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