pub struct VmRecordingFrame {
pub ip: usize,
pub call_depth: usize,
pub stack: Vec<Value>,
pub locals: Vec<Value>,
}Fields§
§ip: usize§call_depth: usize§stack: Vec<Value>§locals: Vec<Value>Trait Implementations§
Source§impl Clone for VmRecordingFrame
impl Clone for VmRecordingFrame
Source§fn clone(&self) -> VmRecordingFrame
fn clone(&self) -> VmRecordingFrame
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 VmRecordingFrame
impl Debug for VmRecordingFrame
Source§impl PartialEq for VmRecordingFrame
impl PartialEq for VmRecordingFrame
impl StructuralPartialEq for VmRecordingFrame
Auto Trait Implementations§
impl Freeze for VmRecordingFrame
impl RefUnwindSafe for VmRecordingFrame
impl Send for VmRecordingFrame
impl Sync for VmRecordingFrame
impl Unpin for VmRecordingFrame
impl UnsafeUnpin for VmRecordingFrame
impl UnwindSafe for VmRecordingFrame
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