pub struct ShowStats {
pub exprs_shown: u64,
pub depth_truncations: u64,
pub chars_produced: u64,
}Expand description
Statistics collected during show operations (for debugging).
Fields§
§exprs_shown: u64Number of expressions rendered.
depth_truncations: u64Number of depth-limit truncations.
chars_produced: u64Total characters produced.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ShowStats
impl RefUnwindSafe for ShowStats
impl Send for ShowStats
impl Sync for ShowStats
impl Unpin for ShowStats
impl UnsafeUnpin for ShowStats
impl UnwindSafe for ShowStats
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