pub struct StackMachineState {
pub number_stack: Vec<i64>,
pub scratch_stack: Vec<i64>,
pub opcodes: Vec<Opcode>,
/* private fields */
}
Fields§
§number_stack: Vec<i64>
§scratch_stack: Vec<i64>
§opcodes: Vec<Opcode>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StackMachineState
impl RefUnwindSafe for StackMachineState
impl Send for StackMachineState
impl Sync for StackMachineState
impl Unpin for StackMachineState
impl UnwindSafe for StackMachineState
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