pub struct CaptureObjectBatchStats {
pub hashed_bytes: u64,
pub linked_bytes: u64,
pub copied_bytes: u64,
pub directory_syncs: u64,
}Expand description
Actual work performed by a capture object batch, independent of its logical RAM size.
Fields§
§hashed_bytes: u64Bytes hashed to create or admit immutable objects.
linked_bytes: u64Bytes referenced by newly installed closure links, including copy fallbacks.
copied_bytes: u64Bytes physically copied when hardlinks were unavailable.
directory_syncs: u64Directory durability barriers issued by this batch.
Trait Implementations§
Source§impl Clone for CaptureObjectBatchStats
impl Clone for CaptureObjectBatchStats
Source§fn clone(&self) -> CaptureObjectBatchStats
fn clone(&self) -> CaptureObjectBatchStats
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 moreimpl Copy for CaptureObjectBatchStats
Source§impl Debug for CaptureObjectBatchStats
impl Debug for CaptureObjectBatchStats
Source§impl Default for CaptureObjectBatchStats
impl Default for CaptureObjectBatchStats
Source§fn default() -> CaptureObjectBatchStats
fn default() -> CaptureObjectBatchStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CaptureObjectBatchStats
impl RefUnwindSafe for CaptureObjectBatchStats
impl Send for CaptureObjectBatchStats
impl Sync for CaptureObjectBatchStats
impl Unpin for CaptureObjectBatchStats
impl UnsafeUnpin for CaptureObjectBatchStats
impl UnwindSafe for CaptureObjectBatchStats
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