pub struct PhaseSummary {
pub phase: &'static str,
pub discarded_bytes: usize,
pub promoted_bytes: usize,
pub failed_bytes: usize,
}Expand description
Per-phase summary.
Fields§
§phase: &'static str§discarded_bytes: usize§promoted_bytes: usize§failed_bytes: usizeTrait Implementations§
Source§impl Clone for PhaseSummary
impl Clone for PhaseSummary
Source§fn clone(&self) -> PhaseSummary
fn clone(&self) -> PhaseSummary
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 PhaseSummary
impl RefUnwindSafe for PhaseSummary
impl Send for PhaseSummary
impl Sync for PhaseSummary
impl Unpin for PhaseSummary
impl UnwindSafe for PhaseSummary
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