Enum xvc_file::XvcFileSubCommand
source · pub enum XvcFileSubCommand {
Track(TrackCLI),
Hash(HashCLI),
Recheck(RecheckCLI),
CarryIn(CarryInCLI),
Copy(CopyCLI),
Move(MoveCLI),
List(ListCLI),
Send(SendCLI),
Bring(BringCLI),
Remove(RemoveCLI),
Untrack(UntrackCLI),
}Expand description
xvc file subcommands
Variants§
Track(TrackCLI)
Add file and directories to Xvc
Hash(HashCLI)
Get digest hash of files with the supported algorithms
Recheck(RecheckCLI)
Get files from cache by copy or *link
CarryIn(CarryInCLI)
Carry (commit) changed files to cache
Copy(CopyCLI)
Copy from source to another location in the workspace
Move(MoveCLI)
Move files to another location in the workspace
List(ListCLI)
List tracked and untracked elements in the workspace
Send(SendCLI)
Send (push, upload) files to external storages
Bring(BringCLI)
Bring (download, pull, fetch) files from external storages
Remove(RemoveCLI)
Remove files from Xvc and possibly storages
Untrack(UntrackCLI)
Untrack (delete) files from Xvc and possibly storages
Trait Implementations§
source§impl Clone for XvcFileSubCommand
impl Clone for XvcFileSubCommand
source§fn clone(&self) -> XvcFileSubCommand
fn clone(&self) -> XvcFileSubCommand
Returns a copy 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 XvcFileSubCommand
impl Debug for XvcFileSubCommand
source§impl FromArgMatches for XvcFileSubCommand
impl FromArgMatches for XvcFileSubCommand
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 XvcFileSubCommand
impl Subcommand for XvcFileSubCommand
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
source§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 RefUnwindSafe for XvcFileSubCommand
impl Send for XvcFileSubCommand
impl Sync for XvcFileSubCommand
impl Unpin for XvcFileSubCommand
impl UnwindSafe for XvcFileSubCommand
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