pub struct TraceFrame {
pub t_ms: u64,
pub data_b64: String,
}Expand description
A single captured frame: milliseconds since trace start + base64 PNG.
Fields§
§t_ms: u64Milliseconds since the trace started.
data_b64: StringBase64-encoded PNG image data.
Trait Implementations§
Source§impl Clone for TraceFrame
impl Clone for TraceFrame
Source§fn clone(&self) -> TraceFrame
fn clone(&self) -> TraceFrame
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 TraceFrame
impl Debug for TraceFrame
Auto Trait Implementations§
impl Freeze for TraceFrame
impl RefUnwindSafe for TraceFrame
impl Send for TraceFrame
impl Sync for TraceFrame
impl Unpin for TraceFrame
impl UnsafeUnpin for TraceFrame
impl UnwindSafe for TraceFrame
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