pub struct OptionalPassthroughArgs {
pub args: Vec<String>,
}Fields§
§args: Vec<String>Trait Implementations§
Source§impl Args for OptionalPassthroughArgs
impl Args for OptionalPassthroughArgs
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 Clone for OptionalPassthroughArgs
impl Clone for OptionalPassthroughArgs
Source§fn clone(&self) -> OptionalPassthroughArgs
fn clone(&self) -> OptionalPassthroughArgs
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OptionalPassthroughArgs
impl Debug for OptionalPassthroughArgs
impl Eq for OptionalPassthroughArgs
Source§impl From<OptionalPassthroughArgs> for Vec<String>
impl From<OptionalPassthroughArgs> for Vec<String>
Source§fn from(value: OptionalPassthroughArgs) -> Self
fn from(value: OptionalPassthroughArgs) -> Self
Converts to this type from the input type.
Source§impl FromArgMatches for OptionalPassthroughArgs
impl FromArgMatches for OptionalPassthroughArgs
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(
&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 PartialEq for OptionalPassthroughArgs
impl PartialEq for OptionalPassthroughArgs
impl StructuralPartialEq for OptionalPassthroughArgs
Auto Trait Implementations§
impl Freeze for OptionalPassthroughArgs
impl RefUnwindSafe for OptionalPassthroughArgs
impl Send for OptionalPassthroughArgs
impl Sync for OptionalPassthroughArgs
impl Unpin for OptionalPassthroughArgs
impl UnsafeUnpin for OptionalPassthroughArgs
impl UnwindSafe for OptionalPassthroughArgs
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.