pub struct StackPoolEntry {
pub pool_id: u32,
pub frames: Vec<u64>,
}Expand description
An owned stack-frame pool entry. Frames are leaf-first u64 addresses.
Fields§
§pool_id: u32Pool ID assigned by the encoder.
frames: Vec<u64>Stack frame addresses (leaf-first).
Trait Implementations§
Source§impl Clone for StackPoolEntry
impl Clone for StackPoolEntry
Source§fn clone(&self) -> StackPoolEntry
fn clone(&self) -> StackPoolEntry
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 StackPoolEntry
impl Debug for StackPoolEntry
Source§impl PartialEq for StackPoolEntry
impl PartialEq for StackPoolEntry
Source§fn eq(&self, other: &StackPoolEntry) -> bool
fn eq(&self, other: &StackPoolEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StackPoolEntry
Auto Trait Implementations§
impl Freeze for StackPoolEntry
impl RefUnwindSafe for StackPoolEntry
impl Send for StackPoolEntry
impl Sync for StackPoolEntry
impl Unpin for StackPoolEntry
impl UnsafeUnpin for StackPoolEntry
impl UnwindSafe for StackPoolEntry
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