pub struct CopperListIoStats {
pub raw_culist_bytes: u64,
pub handle_bytes: u64,
pub encoded_culist_bytes: u64,
pub keyframe_bytes: u64,
pub structured_log_bytes_total: u64,
pub culistid: u64,
pub dropped_copperlists_total: u64,
pub dropped_keyframes_total: u64,
}Expand description
Reported data about CopperList IO for a single iteration.
Fields§
§raw_culist_bytes: u64CopperList bytes resident in RAM for this iteration.
This includes the fixed CopperList struct size plus any pooled or handle-backed payload bytes observed on the real encode path.
handle_bytes: u64Bytes attributed to handle-backed storage while measuring payload IO.
This is surfaced separately so monitors can show how much of the runtime footprint lives in pooled payload buffers rather than inside the fixed CopperList struct.
encoded_culist_bytes: u64Bytes produced by bincode serialization of the CopperList
keyframe_bytes: u64Bytes produced by bincode serialization of the KeyFrame (0 if none)
structured_log_bytes_total: u64Cumulative bytes written to the structured log stream so far
culistid: u64CopperList identifier for reference in monitors
dropped_copperlists_total: u64Total completed CopperLists dropped because the asynchronous output handoff had no capacity. This is cumulative for the runtime instance.
dropped_keyframes_total: u64Total scheduled keyframes skipped because the asynchronous output worker had not returned the preallocated spare capture buffer. This is cumulative for the runtime instance.
Trait Implementations§
Source§impl Clone for CopperListIoStats
impl Clone for CopperListIoStats
Source§fn clone(&self) -> CopperListIoStats
fn clone(&self) -> CopperListIoStats
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreimpl Copy for CopperListIoStats
Source§impl Debug for CopperListIoStats
impl Debug for CopperListIoStats
Source§impl Default for CopperListIoStats
impl Default for CopperListIoStats
Source§fn default() -> CopperListIoStats
fn default() -> CopperListIoStats
Auto Trait Implementations§
impl Freeze for CopperListIoStats
impl RefUnwindSafe for CopperListIoStats
impl Send for CopperListIoStats
impl Sync for CopperListIoStats
impl Unpin for CopperListIoStats
impl UnsafeUnpin for CopperListIoStats
impl UnwindSafe for CopperListIoStats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> GetTypeRegistration for T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more