pub struct BackupVerifyOptions {
pub dir: PathBuf,
pub out: Option<PathBuf>,
}Expand description
BackupVerifyOptions
Fields§
§dir: PathBuf§out: Option<PathBuf>Implementations§
Source§impl BackupVerifyOptions
impl BackupVerifyOptions
Sourcepub fn parse<I>(args: I) -> Result<Self, BackupCommandError>where
I: IntoIterator<Item = OsString>,
pub fn parse<I>(args: I) -> Result<Self, BackupCommandError>where
I: IntoIterator<Item = OsString>,
Parse backup verification options from CLI arguments.
Trait Implementations§
Source§impl Clone for BackupVerifyOptions
impl Clone for BackupVerifyOptions
Source§fn clone(&self) -> BackupVerifyOptions
fn clone(&self) -> BackupVerifyOptions
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 BackupVerifyOptions
impl Debug for BackupVerifyOptions
Source§impl PartialEq for BackupVerifyOptions
impl PartialEq for BackupVerifyOptions
impl Eq for BackupVerifyOptions
impl StructuralPartialEq for BackupVerifyOptions
Auto Trait Implementations§
impl Freeze for BackupVerifyOptions
impl RefUnwindSafe for BackupVerifyOptions
impl Send for BackupVerifyOptions
impl Sync for BackupVerifyOptions
impl Unpin for BackupVerifyOptions
impl UnsafeUnpin for BackupVerifyOptions
impl UnwindSafe for BackupVerifyOptions
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