pub struct FrameRecord {
pub frame_index: u64,
pub spans: Vec<Span>,
pub counters: HashMap<String, f64>,
pub frame_ms: f64,
}Expand description
All spans captured in one frame.
Fields§
§frame_index: u64§spans: Vec<Span>§counters: HashMap<String, f64>§frame_ms: f64Implementations§
Trait Implementations§
Source§impl Clone for FrameRecord
impl Clone for FrameRecord
Source§fn clone(&self) -> FrameRecord
fn clone(&self) -> FrameRecord
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 FrameRecord
impl RefUnwindSafe for FrameRecord
impl Send for FrameRecord
impl Sync for FrameRecord
impl Unpin for FrameRecord
impl UnsafeUnpin for FrameRecord
impl UnwindSafe for FrameRecord
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