pub struct StackPosition {
pub number: u64,
pub position: u32,
pub size: u32,
}Expand description
A review’s place in a platform-recorded stack.
Fields§
§number: u64§position: u321-based, bottom first - the order the stack lands in. Verified against
GitHub: stackEntry.position answers 1, 2, 3 for a three-layer stack,
matching NativeStack::position_of, which is the other place this
number comes from.
size: u32Trait Implementations§
Source§impl Clone for StackPosition
impl Clone for StackPosition
Source§fn clone(&self) -> StackPosition
fn clone(&self) -> StackPosition
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 moreimpl Copy for StackPosition
Source§impl Debug for StackPosition
impl Debug for StackPosition
impl Eq for StackPosition
Source§impl PartialEq for StackPosition
impl PartialEq for StackPosition
impl StructuralPartialEq for StackPosition
Auto Trait Implementations§
impl Freeze for StackPosition
impl RefUnwindSafe for StackPosition
impl Send for StackPosition
impl Sync for StackPosition
impl Unpin for StackPosition
impl UnsafeUnpin for StackPosition
impl UnwindSafe for StackPosition
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