pub enum Location {
Path {
path: PathBuf,
},
}
Expand description
A backup location.
Variants§
Implementations§
§impl Location
impl Location
pub async fn backup_async(
&self,
storage: &AsyncStorage
) -> impl Future<Output = Result<(), Error>>
pub async fn backup_async( &self, storage: &AsyncStorage ) -> impl Future<Output = Result<(), Error>>
Backs-up storage
to self
.
pub async fn restore_async(
&self,
storage: &AsyncStorage
) -> impl Future<Output = Result<(), Error>>
pub async fn restore_async( &self, storage: &AsyncStorage ) -> impl Future<Output = Result<(), Error>>
Restores storage
from self
.
Trait Implementations§
§impl FromArgMatches for Location
impl FromArgMatches for Location
§fn from_arg_matches(
__clap_arg_matches: &ArgMatches
) -> Result<Location, Error<RichFormatter>>
fn from_arg_matches( __clap_arg_matches: &ArgMatches ) -> Result<Location, Error<RichFormatter>>
§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches
) -> Result<Location, Error<RichFormatter>>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches ) -> Result<Location, Error<RichFormatter>>
§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches
) -> Result<(), Error<RichFormatter>>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches ) -> Result<(), Error<RichFormatter>>
Assign values from
ArgMatches
to self
.§fn update_from_arg_matches_mut<'b>(
&mut self,
__clap_arg_matches: &mut ArgMatches
) -> Result<(), Error<RichFormatter>>
fn update_from_arg_matches_mut<'b>( &mut self, __clap_arg_matches: &mut ArgMatches ) -> Result<(), Error<RichFormatter>>
Assign values from
ArgMatches
to self
.§impl Subcommand for Location
impl Subcommand for Location
§fn augment_subcommands<'b>(__clap_app: Command) -> Command
fn augment_subcommands<'b>(__clap_app: Command) -> Command
§fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
§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 Location
impl Send for Location
impl Sync for Location
impl Unpin for Location
impl UnwindSafe for Location
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere T: 'a,
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