pub struct LocalSlot {
inner: ValType,
ty: LocalSlotType,
pub sp: usize,
}
Expand description
A local slot.
Represents the type, location and addressing mode of a local in the stack’s local and argument area.
Fields§
§inner: ValType
The type contained by this local slot.
ty: LocalSlotType
The type of this local slot.
sp: usize
Stack pointer of the local slot.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LocalSlot
impl RefUnwindSafe for LocalSlot
impl Send for LocalSlot
impl Sync for LocalSlot
impl Unpin for LocalSlot
impl UnwindSafe for LocalSlot
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