pub struct IncrementalOverrideArgs {
pub incremental: Option<IncrementalMode>,
}Fields§
§incremental: Option<IncrementalMode>Implementations§
Source§impl IncrementalOverrideArgs
impl IncrementalOverrideArgs
pub fn resolve(&self) -> IncrementalResolution
Trait Implementations§
Source§impl Args for IncrementalOverrideArgs
impl Args for IncrementalOverrideArgs
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 IncrementalOverrideArgs
impl Clone for IncrementalOverrideArgs
Source§fn clone(&self) -> IncrementalOverrideArgs
fn clone(&self) -> IncrementalOverrideArgs
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 IncrementalOverrideArgs
impl Debug for IncrementalOverrideArgs
Source§impl Default for IncrementalOverrideArgs
impl Default for IncrementalOverrideArgs
Source§fn default() -> IncrementalOverrideArgs
fn default() -> IncrementalOverrideArgs
Returns the “default value” for a type. Read more
Source§impl FromArgMatches for IncrementalOverrideArgs
impl FromArgMatches for IncrementalOverrideArgs
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 IncrementalOverrideArgs
impl PartialEq for IncrementalOverrideArgs
impl Eq for IncrementalOverrideArgs
impl StructuralPartialEq for IncrementalOverrideArgs
Auto Trait Implementations§
impl Freeze for IncrementalOverrideArgs
impl RefUnwindSafe for IncrementalOverrideArgs
impl Send for IncrementalOverrideArgs
impl Sync for IncrementalOverrideArgs
impl Unpin for IncrementalOverrideArgs
impl UnsafeUnpin for IncrementalOverrideArgs
impl UnwindSafe for IncrementalOverrideArgs
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