pub enum DestroyFlags {
RecursiveDependents = 1,
ForceUmount = 2,
DryRun = 4,
MachineParsable = 8,
RecursiveChildren = 16,
Verbose = 32,
}
Variants§
RecursiveDependents = 1
ForceUmount = 2
DryRun = 4
MachineParsable = 8
RecursiveChildren = 16
Verbose = 32
Trait Implementations§
Source§impl BitAnd for DestroyFlags
impl BitAnd for DestroyFlags
Source§impl BitOr for DestroyFlags
impl BitOr for DestroyFlags
Source§impl BitXor for DestroyFlags
impl BitXor for DestroyFlags
Source§impl Clone for DestroyFlags
impl Clone for DestroyFlags
Source§fn clone(&self) -> DestroyFlags
fn clone(&self) -> DestroyFlags
Returns a copy 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 DestroyFlags
impl Debug for DestroyFlags
Source§impl Not for DestroyFlags
impl Not for DestroyFlags
Source§impl PartialEq for DestroyFlags
impl PartialEq for DestroyFlags
Source§impl RawBitFlags for DestroyFlags
impl RawBitFlags for DestroyFlags
Source§fn bitflags_type_name() -> &'static str
fn bitflags_type_name() -> &'static str
Return the name of the type for debug formatting purposes. Read more
impl Copy for DestroyFlags
impl Eq for DestroyFlags
impl RawBitFlags for DestroyFlags
impl StructuralPartialEq for DestroyFlags
Auto Trait Implementations§
impl Freeze for DestroyFlags
impl RefUnwindSafe for DestroyFlags
impl Send for DestroyFlags
impl Sync for DestroyFlags
impl Unpin for DestroyFlags
impl UnwindSafe for DestroyFlags
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