pub struct BackupRunnerConfig {
pub out: PathBuf,
pub max_steps: Option<usize>,
pub updated_at: Option<String>,
pub tool_name: String,
pub tool_version: String,
}Expand description
BackupRunnerConfig
Fields§
§out: PathBuf§max_steps: Option<usize>§updated_at: Option<String>§tool_name: String§tool_version: StringTrait Implementations§
Source§impl Clone for BackupRunnerConfig
impl Clone for BackupRunnerConfig
Source§fn clone(&self) -> BackupRunnerConfig
fn clone(&self) -> BackupRunnerConfig
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 BackupRunnerConfig
impl Debug for BackupRunnerConfig
Source§impl PartialEq for BackupRunnerConfig
impl PartialEq for BackupRunnerConfig
Source§fn eq(&self, other: &BackupRunnerConfig) -> bool
fn eq(&self, other: &BackupRunnerConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for BackupRunnerConfig
impl StructuralPartialEq for BackupRunnerConfig
Auto Trait Implementations§
impl Freeze for BackupRunnerConfig
impl RefUnwindSafe for BackupRunnerConfig
impl Send for BackupRunnerConfig
impl Sync for BackupRunnerConfig
impl Unpin for BackupRunnerConfig
impl UnsafeUnpin for BackupRunnerConfig
impl UnwindSafe for BackupRunnerConfig
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