pub struct RemoveOptions {
pub recursive: bool,
pub cached: bool,
pub force: bool,
pub dry_run: bool,
pub ignore_unmatch: bool,
}Fields§
§recursive: bool§cached: bool§force: bool§dry_run: bool§ignore_unmatch: boolTrait Implementations§
Source§impl Clone for RemoveOptions
impl Clone for RemoveOptions
Source§fn clone(&self) -> RemoveOptions
fn clone(&self) -> RemoveOptions
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 moreimpl Copy for RemoveOptions
Source§impl Debug for RemoveOptions
impl Debug for RemoveOptions
impl Eq for RemoveOptions
Source§impl PartialEq for RemoveOptions
impl PartialEq for RemoveOptions
Source§fn eq(&self, other: &RemoveOptions) -> bool
fn eq(&self, other: &RemoveOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RemoveOptions
Auto Trait Implementations§
impl Freeze for RemoveOptions
impl RefUnwindSafe for RemoveOptions
impl Send for RemoveOptions
impl Sync for RemoveOptions
impl Unpin for RemoveOptions
impl UnsafeUnpin for RemoveOptions
impl UnwindSafe for RemoveOptions
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