pub struct PartitionedStats {
pub chunks_processed: usize,
pub total_elements_processed: usize,
pub peak_chunk_size: usize,
}Expand description
Statistics collected during a partitioned reduction.
Fields§
§chunks_processed: usize§total_elements_processed: usize§peak_chunk_size: usizeTrait Implementations§
Source§impl Clone for PartitionedStats
impl Clone for PartitionedStats
Source§fn clone(&self) -> PartitionedStats
fn clone(&self) -> PartitionedStats
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 PartitionedStats
impl Debug for PartitionedStats
Source§impl Default for PartitionedStats
impl Default for PartitionedStats
Source§fn default() -> PartitionedStats
fn default() -> PartitionedStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PartitionedStats
impl RefUnwindSafe for PartitionedStats
impl Send for PartitionedStats
impl Sync for PartitionedStats
impl Unpin for PartitionedStats
impl UnsafeUnpin for PartitionedStats
impl UnwindSafe for PartitionedStats
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,
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