pub struct AggregatedInferenceStats {
pub frame_count: u32,
pub total_copies: usize,
pub total_allocations: usize,
pub total_bytes_copied: usize,
pub latency: LatencyStats,
}Expand description
Aggregated per-frame inference accounting across a replay run.
Fields§
§frame_count: u32§total_copies: usize§total_allocations: usize§total_bytes_copied: usize§latency: LatencyStatsImplementations§
Trait Implementations§
Source§impl Clone for AggregatedInferenceStats
impl Clone for AggregatedInferenceStats
Source§fn clone(&self) -> AggregatedInferenceStats
fn clone(&self) -> AggregatedInferenceStats
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 AggregatedInferenceStats
impl Debug for AggregatedInferenceStats
Source§impl Default for AggregatedInferenceStats
impl Default for AggregatedInferenceStats
Source§fn default() -> AggregatedInferenceStats
fn default() -> AggregatedInferenceStats
Returns the “default value” for a type. Read more
Source§impl PartialEq for AggregatedInferenceStats
impl PartialEq for AggregatedInferenceStats
impl StructuralPartialEq for AggregatedInferenceStats
Auto Trait Implementations§
impl Freeze for AggregatedInferenceStats
impl RefUnwindSafe for AggregatedInferenceStats
impl Send for AggregatedInferenceStats
impl Sync for AggregatedInferenceStats
impl Unpin for AggregatedInferenceStats
impl UnsafeUnpin for AggregatedInferenceStats
impl UnwindSafe for AggregatedInferenceStats
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