pub enum SendFlags {
EmbedData = 1,
LargeBlock = 2,
Compressed = 4,
Raw = 8,
Dedup = 16,
IncludeIntermediary = 32,
IncludeHolds = 64,
IncludeProps = 128,
Verbose = 256,
DryRun = 512,
Parsable = 1_024,
Replicate = 2_048,
}
Variants§
EmbedData = 1
-e
LargeBlock = 2
-L
Compressed = 4
-c
Raw = 8
-w
Dedup = 16
-D
IncludeIntermediary = 32
-I
IncludeHolds = 64
-h
IncludeProps = 128
-p
Verbose = 256
-v
DryRun = 512
-n
Parsable = 1_024
-P
Replicate = 2_048
-R
Trait Implementations§
Source§impl RawBitFlags for SendFlags
impl RawBitFlags for SendFlags
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 SendFlags
impl Eq for SendFlags
impl RawBitFlags for SendFlags
impl StructuralPartialEq for SendFlags
Auto Trait Implementations§
impl Freeze for SendFlags
impl RefUnwindSafe for SendFlags
impl Send for SendFlags
impl Sync for SendFlags
impl Unpin for SendFlags
impl UnwindSafe for SendFlags
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