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