pub struct StepPreview {
pub report: StepReport,
pub dropped_events: Vec<DroppedEvent>,
pub dropped_total: usize,
}Expand description
One step’s effect plus a sample of the events it removed.
Fields§
§report: StepReport§dropped_events: Vec<DroppedEvent>Up to sample of the events this step dropped.
dropped_total: usizeTotal events this step dropped (the sample may be shorter).
Trait Implementations§
Source§impl Clone for StepPreview
impl Clone for StepPreview
Source§fn clone(&self) -> StepPreview
fn clone(&self) -> StepPreview
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 StepPreview
impl Debug for StepPreview
Auto Trait Implementations§
impl Freeze for StepPreview
impl RefUnwindSafe for StepPreview
impl Send for StepPreview
impl Sync for StepPreview
impl Unpin for StepPreview
impl UnsafeUnpin for StepPreview
impl UnwindSafe for StepPreview
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