pub struct ZeroCopyStats {
pub zero_copy_bytes: AtomicU64,
pub copied_bytes: AtomicU64,
pub zero_copy_ops: AtomicU64,
pub copy_ops: AtomicU64,
}Expand description
Statistics for zero-copy operations
Fields§
§zero_copy_bytes: AtomicU64Total bytes transferred without copying
copied_bytes: AtomicU64Total bytes that required copying (fallback)
zero_copy_ops: AtomicU64Number of zero-copy operations
copy_ops: AtomicU64Number of copy operations