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),
Share(ShareCLI),
}
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 in 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 files to external storages
Bring(BringCLI)
Bring files from external storages
Remove(RemoveCLI)
Remove files from Xvc cache and storages
Untrack(UntrackCLI)
Untrack (delete) files from Xvc and storages
Share a file from (S3 compatible) storage for a limited time
Trait Implementations§
Source§impl Clone for XvcFileSubCommand
impl Clone for XvcFileSubCommand
Source§fn clone(&self) -> XvcFileSubCommand
fn clone(&self) -> XvcFileSubCommand
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 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
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 XvcFileSubCommand
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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