pub struct BackupRunResponse {
pub run_id: String,
pub plan_id: String,
pub backup_id: String,
pub complete: bool,
pub max_steps_reached: bool,
pub executed_operation_count: usize,
pub executed_operations: Vec<BackupRunExecutedOperation>,
pub execution: BackupExecutionResumeSummary,
}Expand description
BackupRunResponse
Fields§
§run_id: String§plan_id: String§backup_id: String§complete: bool§max_steps_reached: bool§executed_operation_count: usize§executed_operations: Vec<BackupRunExecutedOperation>§execution: BackupExecutionResumeSummaryTrait Implementations§
Source§impl Clone for BackupRunResponse
impl Clone for BackupRunResponse
Source§fn clone(&self) -> BackupRunResponse
fn clone(&self) -> BackupRunResponse
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 BackupRunResponse
impl Debug for BackupRunResponse
Auto Trait Implementations§
impl Freeze for BackupRunResponse
impl RefUnwindSafe for BackupRunResponse
impl Send for BackupRunResponse
impl Sync for BackupRunResponse
impl Unpin for BackupRunResponse
impl UnsafeUnpin for BackupRunResponse
impl UnwindSafe for BackupRunResponse
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