Struct puffin::FrameData

source ·
pub struct FrameData { /* private fields */ }
Expand description

One frame worth of profile data, collected from many sources.

If you turn on the “packing” feature, then FrameData has interior mutability with double storage:

One or both are always stored. This allows RAM-efficient storage and viewing of many frames of profiling data. Packing and unpacking is done lazily, on-demand.

Implementations§

source§

impl FrameData

source

pub fn new( frame_index: FrameIndex, thread_streams: BTreeMap<ThreadInfo, StreamInfo> ) -> Result<Self>

source

pub fn meta(&self) -> &FrameMeta

source

pub fn packed_size(&self) -> Option<usize>

Number of bytes used by the packed data, if packed.

source

pub fn unpacked_size(&self) -> Option<usize>

Number of bytes used when unpacked, if known.

source

pub fn bytes_of_ram_used(&self) -> usize

bytes currently used by the unpacked and packed data.

source

pub fn has_packed(&self) -> bool

Do we have a packed version stored internally?

source

pub fn has_unpacked(&self) -> bool

Do we have a unpacked version stored internally?

source

pub fn unpacked(&self) -> Result<Arc<UnpackedFrameData>>

Return the unpacked data.

This will lazily unpack if needed (and only once).

Returns Err if failing to decode the packed data.

source

pub fn pack(&self)

Make the FrameData use up less memory. Idempotent.

source

pub fn write_into(&self, write: &mut impl Write) -> Result<()>

Writes one FrameData into a stream, prefixed by its length (u32 le).

source

pub fn read_next(read: &mut impl Read) -> Result<Option<Self>>

Read the next FrameData from a stream.

None is returned if the end of the stream is reached (EOF), or an end-of-stream sentinel of 0u32 is read.

source§

impl FrameData

source

pub fn frame_index(&self) -> u64

source

pub fn range_ns(&self) -> (NanoSecond, NanoSecond)

source

pub fn duration_ns(&self) -> NanoSecond

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.