pub enum CompressionVariant {
Bzip2,
Gzip,
Lz4,
Xz,
}
Expand description
This enum exists to be able to specify a variant without specifying arguments, such as with the –omit flag
Variants§
Trait Implementations§
Source§impl Clone for CompressionVariant
impl Clone for CompressionVariant
Source§fn clone(&self) -> CompressionVariant
fn clone(&self) -> CompressionVariant
Returns a duplicate 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 CompressionVariant
impl Debug for CompressionVariant
Source§impl<'de> Deserialize<'de> for CompressionVariant
impl<'de> Deserialize<'de> for CompressionVariant
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for CompressionVariant
impl Display for CompressionVariant
Source§impl From<&Compression> for &CompressionVariant
impl From<&Compression> for &CompressionVariant
Source§fn from(value: &Compression) -> Self
fn from(value: &Compression) -> Self
Converts to this type from the input type.
Source§impl From<Compression> for CompressionVariant
impl From<Compression> for CompressionVariant
Source§fn from(value: Compression) -> Self
fn from(value: Compression) -> Self
Converts to this type from the input type.
Source§impl FromArgMatches for CompressionVariant
impl FromArgMatches for CompressionVariant
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches
to self
.Source§fn update_from_arg_matches_mut<'b>(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut<'b>( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches
to self
.Source§impl IntoEnumIterator for CompressionVariant
impl IntoEnumIterator for CompressionVariant
type Iterator = CompressionVariantIter
fn iter() -> CompressionVariantIter ⓘ
Source§impl PartialEq for CompressionVariant
impl PartialEq for CompressionVariant
Source§impl Serialize for CompressionVariant
impl Serialize for CompressionVariant
Source§impl Subcommand for CompressionVariant
impl Subcommand for CompressionVariant
Source§fn augment_subcommands<'b>(__clap_app: Command) -> Command
fn augment_subcommands<'b>(__clap_app: Command) -> Command
Source§fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
Append to
Command
so it can instantiate self
via
FromArgMatches::update_from_arg_matches_mut
Read moreSource§fn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Test whether
Self
can parse a specific subcommandSource§impl ValueEnum for CompressionVariant
impl ValueEnum for CompressionVariant
impl Copy for CompressionVariant
impl StructuralPartialEq for CompressionVariant
Auto Trait Implementations§
impl Freeze for CompressionVariant
impl RefUnwindSafe for CompressionVariant
impl Send for CompressionVariant
impl Sync for CompressionVariant
impl Unpin for CompressionVariant
impl UnwindSafe for CompressionVariant
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more