#[repr(C)]pub struct StreamMeta {
pub num_scopes: u64,
pub depth: u64,
pub range_ns_min: i64,
pub range_ns_max: i64,
}Expand description
puffin::StreamInfo minus the actual stream.
Fields§
§num_scopes: u64§depth: u64§range_ns_min: i64§range_ns_max: i64Trait Implementations§
Source§impl Clone for StreamMeta
impl Clone for StreamMeta
Source§fn clone(&self) -> StreamMeta
fn clone(&self) -> StreamMeta
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 StreamMeta
impl Debug for StreamMeta
Source§impl PartialEq for StreamMeta
impl PartialEq for StreamMeta
Source§fn eq(&self, other: &StreamMeta) -> bool
fn eq(&self, other: &StreamMeta) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for StreamMeta
impl Eq for StreamMeta
impl Pod for StreamMeta
impl StructuralPartialEq for StreamMeta
Auto Trait Implementations§
impl Freeze for StreamMeta
impl RefUnwindSafe for StreamMeta
impl Send for StreamMeta
impl Sync for StreamMeta
impl Unpin for StreamMeta
impl UnsafeUnpin for StreamMeta
impl UnwindSafe for StreamMeta
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
Source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.