pub struct BackupExecutionResumeSummary {Show 13 fields
pub plan_id: String,
pub run_id: String,
pub preflight_id: Option<String>,
pub preflight_accepted: bool,
pub restart_required: bool,
pub total_operations: usize,
pub ready_operations: usize,
pub pending_operations: usize,
pub blocked_operations: usize,
pub completed_operations: usize,
pub failed_operations: usize,
pub skipped_operations: usize,
pub next_operation: Option<BackupExecutionJournalOperation>,
}Expand description
BackupExecutionResumeSummary
Fields§
§plan_id: String§run_id: String§preflight_id: Option<String>§preflight_accepted: bool§restart_required: bool§total_operations: usize§ready_operations: usize§pending_operations: usize§blocked_operations: usize§completed_operations: usize§failed_operations: usize§skipped_operations: usize§next_operation: Option<BackupExecutionJournalOperation>Trait Implementations§
Source§impl Clone for BackupExecutionResumeSummary
impl Clone for BackupExecutionResumeSummary
Source§fn clone(&self) -> BackupExecutionResumeSummary
fn clone(&self) -> BackupExecutionResumeSummary
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 BackupExecutionResumeSummary
impl Debug for BackupExecutionResumeSummary
Source§impl<'de> Deserialize<'de> for BackupExecutionResumeSummary
impl<'de> Deserialize<'de> for BackupExecutionResumeSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BackupExecutionResumeSummary
impl PartialEq for BackupExecutionResumeSummary
Source§fn eq(&self, other: &BackupExecutionResumeSummary) -> bool
fn eq(&self, other: &BackupExecutionResumeSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for BackupExecutionResumeSummary
impl StructuralPartialEq for BackupExecutionResumeSummary
Auto Trait Implementations§
impl Freeze for BackupExecutionResumeSummary
impl RefUnwindSafe for BackupExecutionResumeSummary
impl Send for BackupExecutionResumeSummary
impl Sync for BackupExecutionResumeSummary
impl Unpin for BackupExecutionResumeSummary
impl UnsafeUnpin for BackupExecutionResumeSummary
impl UnwindSafe for BackupExecutionResumeSummary
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