Struct puffin::StreamInfoRef
source · pub struct StreamInfoRef<'a> {
pub stream: &'a [u8],
pub num_scopes: usize,
pub depth: usize,
pub range_ns: (NanoSecond, NanoSecond),
}
Expand description
TODO: Improve encapsulation.
A reference to the contents of a StreamInfo
.
Fields§
§stream: &'a [u8]
The raw profile data.
num_scopes: usize
Total number of scopes in the stream.
depth: usize
The depth of the deepest scope.
0
mean no scopes, 1
some scopes without children, etc.
range_ns: (NanoSecond, NanoSecond)
The smallest and largest nanosecond value in the stream.
The default value is (NanoSecond::MAX
, NanoSecond::MIN
) which indicates an empty stream.
Trait Implementations§
source§impl<'a> Clone for StreamInfoRef<'a>
impl<'a> Clone for StreamInfoRef<'a>
source§fn clone(&self) -> StreamInfoRef<'a>
fn clone(&self) -> StreamInfoRef<'a>
Returns a copy 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 moreimpl<'a> Copy for StreamInfoRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for StreamInfoRef<'a>
impl<'a> RefUnwindSafe for StreamInfoRef<'a>
impl<'a> Send for StreamInfoRef<'a>
impl<'a> Sync for StreamInfoRef<'a>
impl<'a> Unpin for StreamInfoRef<'a>
impl<'a> UnwindSafe for StreamInfoRef<'a>
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