pub struct RestoreApplyPendingSummary {
pub pending_operations: usize,
pub pending_operation_available: bool,
pub pending_sequence: Option<usize>,
pub pending_operation: Option<RestoreApplyOperationKind>,
pub pending_updated_at: Option<String>,
pub pending_updated_at_known: bool,
}Expand description
RestoreApplyPendingSummary
Fields§
§pending_operations: usize§pending_operation_available: bool§pending_sequence: Option<usize>§pending_operation: Option<RestoreApplyOperationKind>§pending_updated_at: Option<String>§pending_updated_at_known: boolImplementations§
Source§impl RestoreApplyPendingSummary
impl RestoreApplyPendingSummary
Sourcepub fn from_journal(journal: &RestoreApplyJournal) -> Self
pub fn from_journal(journal: &RestoreApplyJournal) -> Self
Build a compact pending-operation summary from a restore apply journal.
Trait Implementations§
Source§impl Clone for RestoreApplyPendingSummary
impl Clone for RestoreApplyPendingSummary
Source§fn clone(&self) -> RestoreApplyPendingSummary
fn clone(&self) -> RestoreApplyPendingSummary
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 RestoreApplyPendingSummary
impl Debug for RestoreApplyPendingSummary
Source§impl<'de> Deserialize<'de> for RestoreApplyPendingSummary
impl<'de> Deserialize<'de> for RestoreApplyPendingSummary
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 RestoreApplyPendingSummary
impl StructuralPartialEq for RestoreApplyPendingSummary
Auto Trait Implementations§
impl Freeze for RestoreApplyPendingSummary
impl RefUnwindSafe for RestoreApplyPendingSummary
impl Send for RestoreApplyPendingSummary
impl Sync for RestoreApplyPendingSummary
impl Unpin for RestoreApplyPendingSummary
impl UnsafeUnpin for RestoreApplyPendingSummary
impl UnwindSafe for RestoreApplyPendingSummary
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