pub struct RecordingFrame {
pub frame_index: u32,
pub captured_at_unix_ms: i64,
pub processes: Vec<ProcessFrameView>,
}Expand description
A single recorded frame — a point-in-time snapshot of all processes.
Fields§
§frame_index: u32§captured_at_unix_ms: i64§processes: Vec<ProcessFrameView>Trait Implementations§
Auto Trait Implementations§
impl Freeze for RecordingFrame
impl RefUnwindSafe for RecordingFrame
impl Send for RecordingFrame
impl Sync for RecordingFrame
impl Unpin for RecordingFrame
impl UnsafeUnpin for RecordingFrame
impl UnwindSafe for RecordingFrame
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