pub struct FrameMeta {
pub frame_index: FrameIndex,
pub range_ns: (NanoSecond, NanoSecond),
pub num_bytes: usize,
pub num_scopes: usize,
}Expand description
Meta-information about a frame.
Fields§
§frame_index: FrameIndexWhat frame this is (counting from 0 at application startup).
range_ns: (NanoSecond, NanoSecond)The span we cover.
num_bytes: usizeThe unpacked size of all streams.
num_scopes: usizeTotal number of scopes.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FrameMeta
impl RefUnwindSafe for FrameMeta
impl Send for FrameMeta
impl Sync for FrameMeta
impl Unpin for FrameMeta
impl UnwindSafe for FrameMeta
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