pub enum CatalogSubcommand {
List {
details_flag: bool,
only_backup_status: Option<BackupStatus>,
filepaths_flag: bool,
},
Compact,
}Expand description
Catalog subcommands.
Variants§
List
Print a list of backups to stdout.
By default, this prints a table of backups, age and status with colors. The flag --details
prints additional columns.
If the flag --filepaths is set, only absolute filepaths are printed. This can be used in
scripting scenarios.
Options --only purgeable or --only retainable will list only the corresponding backups.
They will activate the flag --filepaths automatically.
Fields
§
details_flag: boolAdd details columns to the table.
Print number of sessions, windows and panes in the backup and the backup’s format version. This is slightly slower because it requires each backup file to be partially read.
§
only_backup_status: Option<BackupStatus>List only backups having this status.
Compact
Apply the catalog’s compaction strategy: this deletes all purgable backups.
Trait Implementations§
Source§impl Debug for CatalogSubcommand
impl Debug for CatalogSubcommand
Source§impl FromArgMatches for CatalogSubcommand
impl FromArgMatches for CatalogSubcommand
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 CatalogSubcommand
impl Subcommand for CatalogSubcommand
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 CatalogSubcommand
impl RefUnwindSafe for CatalogSubcommand
impl Send for CatalogSubcommand
impl Sync for CatalogSubcommand
impl Unpin for CatalogSubcommand
impl UnwindSafe for CatalogSubcommand
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> 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