pub struct StreamSummary {
pub stats: CleaningStats,
pub changes_made: u64,
}Expand description
Summary of cumulative streaming cleanup work.
Fields§
§stats: CleaningStatsAggregated counters over all emitted chunks.
changes_made: u64Total transformations across all emitted chunks.
Trait Implementations§
Source§impl Clone for StreamSummary
impl Clone for StreamSummary
Source§fn clone(&self) -> StreamSummary
fn clone(&self) -> StreamSummary
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 moreAuto Trait Implementations§
impl Freeze for StreamSummary
impl RefUnwindSafe for StreamSummary
impl Send for StreamSummary
impl Sync for StreamSummary
impl Unpin for StreamSummary
impl UnsafeUnpin for StreamSummary
impl UnwindSafe for StreamSummary
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