pub struct RecomprizzArgs {Show 13 fields
pub target: Option<PathBuf>,
pub include: Option<Vec<PathBuf>>,
pub exclude: Option<Vec<PathBuf>>,
pub additional_paths: Option<Vec<String>>,
pub outdir: Option<PathBuf>,
pub compression: Compression,
pub rename: Option<String>,
pub renamepattern: Option<String>,
pub reproducible: bool,
pub ignore_git: bool,
pub ignore_hidden: bool,
pub silent: bool,
pub subcommands: Option<Subcommands>,
}Fields§
§target: Option<PathBuf>§include: Option<Vec<PathBuf>>§exclude: Option<Vec<PathBuf>>§additional_paths: Option<Vec<String>>§outdir: Option<PathBuf>§compression: Compression§rename: Option<String>§renamepattern: Option<String>§reproducible: bool§ignore_git: bool§silent: bool§subcommands: Option<Subcommands>Trait Implementations§
Source§impl Args for RecomprizzArgs
impl Args for RecomprizzArgs
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl CommandFactory for RecomprizzArgs
impl CommandFactory for RecomprizzArgs
Source§impl Debug for RecomprizzArgs
impl Debug for RecomprizzArgs
Source§impl FromArgMatches for RecomprizzArgs
impl FromArgMatches for RecomprizzArgs
Source§fn from_arg_matches(
__clap_arg_matches: &ArgMatches,
) -> Result<RecomprizzArgs, Error>
fn from_arg_matches( __clap_arg_matches: &ArgMatches, ) -> Result<RecomprizzArgs, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<RecomprizzArgs, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<RecomprizzArgs, 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(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§impl Parser for RecomprizzArgs
impl Parser for RecomprizzArgs
Source§fn parse_from<I, T>(itr: I) -> Self
fn parse_from<I, T>(itr: I) -> Self
Parse from iterator, exit on error.
Source§fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
Parse from iterator, return Err on error.
Source§fn update_from<I, T>(&mut self, itr: I)
fn update_from<I, T>(&mut self, itr: I)
Auto Trait Implementations§
impl Freeze for RecomprizzArgs
impl RefUnwindSafe for RecomprizzArgs
impl Send for RecomprizzArgs
impl Sync for RecomprizzArgs
impl Unpin for RecomprizzArgs
impl UnwindSafe for RecomprizzArgs
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> 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