pub struct Streaming12Measurements {
pub memory_budget_bytes: u64,
pub peak_tracked_bytes: u64,
pub spool_limit_bytes: u64,
pub spilled_bytes: u64,
pub current_bytes_after_finish: u64,
pub hidden_host_copy_bytes: u64,
pub host_to_device_bytes: u64,
pub device_to_host_bytes: u64,
pub determinism_mismatches: u64,
pub max_open_spill_files: u64,
}Expand description
Typed resource and transfer measurements consumed by the 1.2 gate.
Fields§
§memory_budget_bytes: u64Configured hard tracked-memory ceiling.
peak_tracked_bytes: u64Peak explicitly tracked resident bytes.
spool_limit_bytes: u64Configured maximum temporary spool extent.
spilled_bytes: u64Temporary bytes written by the canonical external operation.
current_bytes_after_finish: u64Tracked bytes still live after completion or cancellation cleanup.
Host-copy bytes not represented by leased chunks or named IO.
host_to_device_bytes: u64Explicit host-to-device bytes in the CPU-only 1.2 workflow.
device_to_host_bytes: u64Explicit device-to-host bytes in the CPU-only 1.2 workflow.
determinism_mismatches: u64Cross-chunk/run-size deterministic output mismatches.
max_open_spill_files: u64Maximum simultaneously open spool/run files.
Trait Implementations§
Source§impl Clone for Streaming12Measurements
impl Clone for Streaming12Measurements
Source§fn clone(&self) -> Streaming12Measurements
fn clone(&self) -> Streaming12Measurements
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 moreSource§impl Debug for Streaming12Measurements
impl Debug for Streaming12Measurements
Source§impl PartialEq for Streaming12Measurements
impl PartialEq for Streaming12Measurements
Source§fn eq(&self, other: &Streaming12Measurements) -> bool
fn eq(&self, other: &Streaming12Measurements) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for Streaming12Measurements
impl Eq for Streaming12Measurements
impl StructuralPartialEq for Streaming12Measurements
Auto Trait Implementations§
impl Freeze for Streaming12Measurements
impl RefUnwindSafe for Streaming12Measurements
impl Send for Streaming12Measurements
impl Sync for Streaming12Measurements
impl Unpin for Streaming12Measurements
impl UnsafeUnpin for Streaming12Measurements
impl UnwindSafe for Streaming12Measurements
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