pub struct WebDavCmd {
address: Option<String>,
path_template: Option<String>,
time_template: Option<String>,
symlinks: bool,
file_access: Option<String>,
snapshot_path: Option<String>,
}Fields§
§address: Option<String>Address to bind the webdav server to. [default: “localhost:8000”]
path_template: Option<String>The path template to use for snapshots. {id}, {id_long}, {time}, {username}, {hostname}, {label}, {tags}, {backup_start}, {backup_end} are replaced. [default: “[{hostname}]/[{label}]/{time}”]
time_template: Option<String>The time template to use to display times in the path template. See https://docs.rs/chrono/latest/chrono/format/strftime/index.html for format options. [default: “%Y-%m-%d_%H-%M-%S”]
symlinks: boolUse symlinks. This may not be supported by all WebDAV clients
file_access: Option<String>How to handle access to files. [default: “forbidden” for hot/cold repositories, else “read”]
snapshot_path: Option<String>Specify directly which snapshot/path to serve
Implementations§
Source§impl WebDavCmd
impl WebDavCmd
Sourcefn inner_run(
&self,
repo: Repository<ProgressOptions, IndexedStatus<FullIndex, OpenStatus>>,
) -> Result<()>
fn inner_run( &self, repo: Repository<ProgressOptions, IndexedStatus<FullIndex, OpenStatus>>, ) -> Result<()>
be careful about self VS RUSTIC_APP.config() usage only the RUSTIC_APP.config() involves the TOML and ENV merged configurations see https://github.com/rustic-rs/rustic/issues/1242
Trait Implementations§
Source§impl Args for WebDavCmd
impl Args for WebDavCmd
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl Command for WebDavCmd
impl Command for WebDavCmd
Source§fn description() -> &'static str
fn description() -> &'static str
Description of this program
Authors of this program
Source§fn parse_args<T, I>(into_args: I) -> Self
fn parse_args<T, I>(into_args: I) -> Self
Source§fn parse_env_args() -> Selfwhere
Self: Parser,
fn parse_env_args() -> Selfwhere
Self: Parser,
Source§impl CommandFactory for WebDavCmd
impl CommandFactory for WebDavCmd
Source§impl<'de> Deserialize<'de> for WebDavCmd
impl<'de> Deserialize<'de> for WebDavCmd
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl FromArgMatches for WebDavCmd
impl FromArgMatches for WebDavCmd
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>
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
ArgMatches to self.Source§impl Override<RusticConfig> for WebDavCmd
impl Override<RusticConfig> for WebDavCmd
Source§fn override_config(
&self,
config: RusticConfig,
) -> Result<RusticConfig, FrameworkError>
fn override_config( &self, config: RusticConfig, ) -> Result<RusticConfig, FrameworkError>
Source§impl Parser for WebDavCmd
impl Parser for WebDavCmd
Source§fn parse_from<I, T>(itr: I) -> Self
fn parse_from<I, T>(itr: I) -> Self
Source§fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
Source§fn update_from<I, T>(&mut self, itr: I)
fn update_from<I, T>(&mut self, itr: I)
Auto Trait Implementations§
impl Freeze for WebDavCmd
impl RefUnwindSafe for WebDavCmd
impl Send for WebDavCmd
impl Sync for WebDavCmd
impl Unpin for WebDavCmd
impl UnwindSafe for WebDavCmd
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<C> Config for C
impl<C> Config for C
Source§fn load_toml(toml_string: impl AsRef<str>) -> Result<C, FrameworkError>
fn load_toml(toml_string: impl AsRef<str>) -> Result<C, FrameworkError>
Source§fn load_toml_file(path: impl AsRef<CanonicalPath>) -> Result<C, FrameworkError>
fn load_toml_file(path: impl AsRef<CanonicalPath>) -> Result<C, FrameworkError>
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
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>
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>
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