pub struct RestoreApplyProgressSummary {
pub operation_count: usize,
pub completed_operations: usize,
pub remaining_operations: usize,
pub transitionable_operations: usize,
pub attention_operations: usize,
pub completion_basis_points: usize,
}Expand description
RestoreApplyProgressSummary
Fields§
§operation_count: usize§completed_operations: usize§remaining_operations: usize§transitionable_operations: usize§attention_operations: usize§completion_basis_points: usizeImplementations§
Source§impl RestoreApplyProgressSummary
impl RestoreApplyProgressSummary
Sourcepub const fn from_journal(journal: &RestoreApplyJournal) -> Self
pub const fn from_journal(journal: &RestoreApplyJournal) -> Self
Build a compact progress summary from restore apply journal counters.
Trait Implementations§
Source§impl Clone for RestoreApplyProgressSummary
impl Clone for RestoreApplyProgressSummary
Source§fn clone(&self) -> RestoreApplyProgressSummary
fn clone(&self) -> RestoreApplyProgressSummary
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 RestoreApplyProgressSummary
impl Debug for RestoreApplyProgressSummary
Source§impl<'de> Deserialize<'de> for RestoreApplyProgressSummary
impl<'de> Deserialize<'de> for RestoreApplyProgressSummary
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
impl Eq for RestoreApplyProgressSummary
impl StructuralPartialEq for RestoreApplyProgressSummary
Auto Trait Implementations§
impl Freeze for RestoreApplyProgressSummary
impl RefUnwindSafe for RestoreApplyProgressSummary
impl Send for RestoreApplyProgressSummary
impl Sync for RestoreApplyProgressSummary
impl Unpin for RestoreApplyProgressSummary
impl UnsafeUnpin for RestoreApplyProgressSummary
impl UnwindSafe for RestoreApplyProgressSummary
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