pub struct ObjectStreamStats {
pub total_streams: usize,
pub total_objects: usize,
pub average_objects_per_stream: f64,
}Expand description
Statistics for object stream compression
Fields§
§total_streams: usize§total_objects: usize§average_objects_per_stream: f64Trait Implementations§
Source§impl Clone for ObjectStreamStats
impl Clone for ObjectStreamStats
Source§fn clone(&self) -> ObjectStreamStats
fn clone(&self) -> ObjectStreamStats
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 moreAuto Trait Implementations§
impl Freeze for ObjectStreamStats
impl RefUnwindSafe for ObjectStreamStats
impl Send for ObjectStreamStats
impl Sync for ObjectStreamStats
impl Unpin for ObjectStreamStats
impl UnsafeUnpin for ObjectStreamStats
impl UnwindSafe for ObjectStreamStats
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