pub struct StackSlotView {
pub slot: usize,
pub value: ValueView,
}Fields§
§slot: usizeAbsolute VM stack slot, so hits stay comparable across frames.
value: ValueViewTrait Implementations§
Source§impl Clone for StackSlotView
impl Clone for StackSlotView
Source§fn clone(&self) -> StackSlotView
fn clone(&self) -> StackSlotView
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 StackSlotView
impl Debug for StackSlotView
impl Eq for StackSlotView
Source§impl PartialEq for StackSlotView
impl PartialEq for StackSlotView
Source§impl Serialize for StackSlotView
impl Serialize for StackSlotView
impl StructuralPartialEq for StackSlotView
Auto Trait Implementations§
impl Freeze for StackSlotView
impl RefUnwindSafe for StackSlotView
impl Send for StackSlotView
impl Sync for StackSlotView
impl Unpin for StackSlotView
impl UnsafeUnpin for StackSlotView
impl UnwindSafe for StackSlotView
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