pub struct RestoreRunBatchSummary {
pub requested_max_steps: Option<usize>,
pub initial_ready_operations: usize,
pub initial_remaining_operations: usize,
pub executed_operations: usize,
pub remaining_ready_operations: usize,
pub remaining_operations: usize,
pub ready_operations_delta: isize,
pub remaining_operations_delta: isize,
pub stopped_by_max_steps: bool,
pub complete: bool,
}Expand description
RestoreRunBatchSummary
Fields§
§requested_max_steps: Option<usize>§initial_ready_operations: usize§initial_remaining_operations: usize§executed_operations: usize§remaining_ready_operations: usize§remaining_operations: usize§ready_operations_delta: isize§remaining_operations_delta: isize§stopped_by_max_steps: bool§complete: boolTrait Implementations§
Source§impl Clone for RestoreRunBatchSummary
impl Clone for RestoreRunBatchSummary
Source§fn clone(&self) -> RestoreRunBatchSummary
fn clone(&self) -> RestoreRunBatchSummary
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 RestoreRunBatchSummary
impl Debug for RestoreRunBatchSummary
Auto Trait Implementations§
impl Freeze for RestoreRunBatchSummary
impl RefUnwindSafe for RestoreRunBatchSummary
impl Send for RestoreRunBatchSummary
impl Sync for RestoreRunBatchSummary
impl Unpin for RestoreRunBatchSummary
impl UnsafeUnpin for RestoreRunBatchSummary
impl UnwindSafe for RestoreRunBatchSummary
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