pub struct RestoreRunnerConfig {
pub journal: PathBuf,
pub command: RestoreApplyCommandConfig,
pub max_steps: Option<usize>,
pub updated_at: Option<String>,
}Expand description
RestoreRunnerConfig
Fields§
§journal: PathBuf§command: RestoreApplyCommandConfig§max_steps: Option<usize>§updated_at: Option<String>Trait Implementations§
Source§impl Clone for RestoreRunnerConfig
impl Clone for RestoreRunnerConfig
Source§fn clone(&self) -> RestoreRunnerConfig
fn clone(&self) -> RestoreRunnerConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RestoreRunnerConfig
impl Debug for RestoreRunnerConfig
Source§impl PartialEq for RestoreRunnerConfig
impl PartialEq for RestoreRunnerConfig
Source§fn eq(&self, other: &RestoreRunnerConfig) -> bool
fn eq(&self, other: &RestoreRunnerConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RestoreRunnerConfig
impl StructuralPartialEq for RestoreRunnerConfig
Auto Trait Implementations§
impl Freeze for RestoreRunnerConfig
impl RefUnwindSafe for RestoreRunnerConfig
impl Send for RestoreRunnerConfig
impl Sync for RestoreRunnerConfig
impl Unpin for RestoreRunnerConfig
impl UnsafeUnpin for RestoreRunnerConfig
impl UnwindSafe for RestoreRunnerConfig
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