pub enum RecvFlags {
Force = 1,
Resumeable = 2,
DiscardFirstName = 4,
DiscardAllButLastName = 8,
IgnoreHolds = 16,
NoMount = 32,
Verbose = 64,
DryRun = 128,
}
Variants§
Force = 1
-F
Resumeable = 2
-s
DiscardFirstName = 4
-d
DiscardAllButLastName = 8
-e
IgnoreHolds = 16
-h
NoMount = 32
-u
Verbose = 64
-v
DryRun = 128
-n
Trait Implementations§
Source§impl RawBitFlags for RecvFlags
impl RawBitFlags for RecvFlags
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 RecvFlags
impl Eq for RecvFlags
impl RawBitFlags for RecvFlags
impl StructuralPartialEq for RecvFlags
Auto Trait Implementations§
impl Freeze for RecvFlags
impl RefUnwindSafe for RecvFlags
impl Send for RecvFlags
impl Sync for RecvFlags
impl Unpin for RecvFlags
impl UnwindSafe for RecvFlags
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