pub struct ExecutionSummary {
pub total_actions: usize,
pub completed_actions: usize,
pub skipped_actions: usize,
pub blocked_actions: usize,
pub failed_actions: usize,
pub estimated_bytes: u64,
pub confirmed_reclaimed_bytes: u64,
pub pending_reclaim_bytes: u64,
pub skipped_bytes: u64,
pub failed_bytes: u64,
pub shadowed_bytes: u64,
}Fields§
§total_actions: usize§completed_actions: usize§skipped_actions: usize§blocked_actions: usize§failed_actions: usize§estimated_bytes: u64§confirmed_reclaimed_bytes: u64§pending_reclaim_bytes: u64§skipped_bytes: u64§failed_bytes: u64§shadowed_bytes: u64Implementations§
Source§impl ExecutionSummary
impl ExecutionSummary
pub fn from_actions(actions: &[ExecutionActionReport]) -> Self
Trait Implementations§
Source§impl Clone for ExecutionSummary
impl Clone for ExecutionSummary
Source§fn clone(&self) -> ExecutionSummary
fn clone(&self) -> ExecutionSummary
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 ExecutionSummary
impl Debug for ExecutionSummary
Source§impl Default for ExecutionSummary
impl Default for ExecutionSummary
Source§fn default() -> ExecutionSummary
fn default() -> ExecutionSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExecutionSummary
impl<'de> Deserialize<'de> for ExecutionSummary
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 ExecutionSummary
Source§impl PartialEq for ExecutionSummary
impl PartialEq for ExecutionSummary
Source§fn eq(&self, other: &ExecutionSummary) -> bool
fn eq(&self, other: &ExecutionSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ExecutionSummary
impl Serialize for ExecutionSummary
impl StructuralPartialEq for ExecutionSummary
Auto Trait Implementations§
impl Freeze for ExecutionSummary
impl RefUnwindSafe for ExecutionSummary
impl Send for ExecutionSummary
impl Sync for ExecutionSummary
impl Unpin for ExecutionSummary
impl UnsafeUnpin for ExecutionSummary
impl UnwindSafe for ExecutionSummary
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more