use ;
static IO_NS: AtomicU64 = new;
static IO_BYTES: AtomicU64 = new;
/// Snapshot of one frame's I/O totals.
/// Add one I/O event to the current frame's totals.
///
/// Cheap (two relaxed atomic adds); safe to call from any thread,
/// including background streaming workers.
/// Read + reset the I/O accumulator. Call once per rendered frame
/// (after [`frame_mark`](crate::frame_mark)) so the next frame's
/// totals start from zero.