pub struct StackHandle(/* private fields */);
Expand description
A handle to a stack, specific to a thread. Can be created with Profile::intern_stack
.
Trait Implementations§
Source§impl Clone for StackHandle
impl Clone for StackHandle
Source§fn clone(&self) -> StackHandle
fn clone(&self) -> StackHandle
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 moreSource§impl Debug for StackHandle
impl Debug for StackHandle
Source§impl Hash for StackHandle
impl Hash for StackHandle
Source§impl Ord for StackHandle
impl Ord for StackHandle
Source§fn cmp(&self, other: &StackHandle) -> Ordering
fn cmp(&self, other: &StackHandle) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for StackHandle
impl PartialEq for StackHandle
Source§impl PartialOrd for StackHandle
impl PartialOrd for StackHandle
impl Copy for StackHandle
impl Eq for StackHandle
impl StructuralPartialEq for StackHandle
Auto Trait Implementations§
impl Freeze for StackHandle
impl RefUnwindSafe for StackHandle
impl Send for StackHandle
impl Sync for StackHandle
impl Unpin for StackHandle
impl UnwindSafe for StackHandle
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