pub struct RunnerFrameDriveAggregateSnapshot {
pub window_count: u32,
pub total_event_count: u64,
pub max_event_count: u64,
pub last_event_frame_id: u64,
pub last_event_unix_ms: Option<u64>,
pub reason_counts: Vec<RunnerFrameDriveReasonCount>,
}Fields§
§window_count: u32§total_event_count: u64§max_event_count: u64§last_event_frame_id: u64§last_event_unix_ms: Option<u64>§reason_counts: Vec<RunnerFrameDriveReasonCount>Trait Implementations§
Source§impl Clone for RunnerFrameDriveAggregateSnapshot
impl Clone for RunnerFrameDriveAggregateSnapshot
Source§fn clone(&self) -> RunnerFrameDriveAggregateSnapshot
fn clone(&self) -> RunnerFrameDriveAggregateSnapshot
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for RunnerFrameDriveAggregateSnapshot
impl Default for RunnerFrameDriveAggregateSnapshot
Source§fn default() -> RunnerFrameDriveAggregateSnapshot
fn default() -> RunnerFrameDriveAggregateSnapshot
Returns the “default value” for a type. Read more
Source§impl PartialEq for RunnerFrameDriveAggregateSnapshot
impl PartialEq for RunnerFrameDriveAggregateSnapshot
Source§fn eq(&self, other: &RunnerFrameDriveAggregateSnapshot) -> bool
fn eq(&self, other: &RunnerFrameDriveAggregateSnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RunnerFrameDriveAggregateSnapshot
impl StructuralPartialEq for RunnerFrameDriveAggregateSnapshot
Auto Trait Implementations§
impl Freeze for RunnerFrameDriveAggregateSnapshot
impl RefUnwindSafe for RunnerFrameDriveAggregateSnapshot
impl Send for RunnerFrameDriveAggregateSnapshot
impl Sync for RunnerFrameDriveAggregateSnapshot
impl Unpin for RunnerFrameDriveAggregateSnapshot
impl UnsafeUnpin for RunnerFrameDriveAggregateSnapshot
impl UnwindSafe for RunnerFrameDriveAggregateSnapshot
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