pub struct StoredFrame {
pub frame_index: u32,
pub captured_at_unix_ms: i64,
pub process_count: u32,
pub capture_duration_ms: f64,
pub json: String,
}Fields§
§frame_index: u32§captured_at_unix_ms: i64§process_count: u32§capture_duration_ms: f64§json: StringTrait Implementations§
Source§impl Clone for StoredFrame
impl Clone for StoredFrame
Source§fn clone(&self) -> StoredFrame
fn clone(&self) -> StoredFrame
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 moreAuto Trait Implementations§
impl Freeze for StoredFrame
impl RefUnwindSafe for StoredFrame
impl Send for StoredFrame
impl Sync for StoredFrame
impl Unpin for StoredFrame
impl UnsafeUnpin for StoredFrame
impl UnwindSafe for StoredFrame
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