pub struct VmExecutionFrameSnapshot {
pub continuation: VmFrameContinuation,
pub operand_stack_base: usize,
pub local_base: usize,
pub local_count: usize,
pub prototype_id: Option<u32>,
}Fields§
§continuation: VmFrameContinuation§operand_stack_base: usize§local_base: usize§local_count: usize§prototype_id: Option<u32>Trait Implementations§
Source§impl Clone for VmExecutionFrameSnapshot
impl Clone for VmExecutionFrameSnapshot
Source§fn clone(&self) -> VmExecutionFrameSnapshot
fn clone(&self) -> VmExecutionFrameSnapshot
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 VmExecutionFrameSnapshot
impl Debug for VmExecutionFrameSnapshot
impl Eq for VmExecutionFrameSnapshot
Source§impl PartialEq for VmExecutionFrameSnapshot
impl PartialEq for VmExecutionFrameSnapshot
impl StructuralPartialEq for VmExecutionFrameSnapshot
Auto Trait Implementations§
impl Freeze for VmExecutionFrameSnapshot
impl RefUnwindSafe for VmExecutionFrameSnapshot
impl Send for VmExecutionFrameSnapshot
impl Sync for VmExecutionFrameSnapshot
impl Unpin for VmExecutionFrameSnapshot
impl UnsafeUnpin for VmExecutionFrameSnapshot
impl UnwindSafe for VmExecutionFrameSnapshot
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.