pub struct ArgsOrVersion<T: FromArgs, V> {
pub app: T,
/* private fields */
}Fields§
§app: TTrait Implementations§
Source§impl<T: FromArgs, V: AppVersionProvider> FromArgs for ArgsOrVersion<T, V>
impl<T: FromArgs, V: AppVersionProvider> FromArgs for ArgsOrVersion<T, V>
Source§fn from_args(command_name: &[&str], args: &[&str]) -> Result<Self, EarlyExit>
fn from_args(command_name: &[&str], args: &[&str]) -> Result<Self, EarlyExit>
Construct the type from an input set of arguments. Read more
Source§fn redact_arg_values(
_command_name: &[&str],
_args: &[&str],
) -> Result<Vec<String>, EarlyExit>
fn redact_arg_values( _command_name: &[&str], _args: &[&str], ) -> Result<Vec<String>, EarlyExit>
Get a String with just the argument names, e.g., options, flags, subcommands, etc, but
without the values of the options and arguments. This can be useful as a means to capture
anonymous usage statistics without revealing the content entered by the end user. Read more
impl<T: FromArgs, V: AppVersionProvider> TopLevelCommand for ArgsOrVersion<T, V>
Auto Trait Implementations§
impl<T, V> Freeze for ArgsOrVersion<T, V>where
T: Freeze,
impl<T, V> RefUnwindSafe for ArgsOrVersion<T, V>where
T: RefUnwindSafe,
V: RefUnwindSafe,
impl<T, V> Send for ArgsOrVersion<T, V>
impl<T, V> Sync for ArgsOrVersion<T, V>
impl<T, V> Unpin for ArgsOrVersion<T, V>
impl<T, V> UnwindSafe for ArgsOrVersion<T, V>where
T: UnwindSafe,
V: UnwindSafe,
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