pub enum DebtVerb {
Baseline(DebtVerbArgs),
Migrate(DebtVerbArgs),
Tighten(DebtVerbArgs),
}Expand description
The three ways a debt file changes, each previewing by default.
Variants§
Baseline(DebtVerbArgs)
Record every current violation as debt. Refuses where a debt file exists, because a baseline never widens one.
Migrate(DebtVerbArgs)
Convert the legacy chapter list into the dimensional file, then remove the list. Preserves every exemption and broadens nothing.
Tighten(DebtVerbArgs)
Lower every ceiling to its current measurement and clear every corrected exception. Never raises a ceiling.
Trait Implementations§
Source§impl FromArgMatches for DebtVerb
impl FromArgMatches for DebtVerb
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 Subcommand for DebtVerb
impl Subcommand for DebtVerb
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 subcommandAuto Trait Implementations§
impl Freeze for DebtVerb
impl RefUnwindSafe for DebtVerb
impl Send for DebtVerb
impl Sync for DebtVerb
impl Unpin for DebtVerb
impl UnsafeUnpin for DebtVerb
impl UnwindSafe for DebtVerb
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