pub struct VmState {
pub current_node_name: String,
pub program_counter: isize,
pub current_options: Vec<(Line, String)>,
pub stack: Vec<YarnValue>,
}Fields§
§current_node_name: String§program_counter: isize§current_options: Vec<(Line, String)>§stack: Vec<YarnValue>Auto Trait Implementations§
impl Freeze for VmState
impl RefUnwindSafe for VmState
impl Send for VmState
impl Sync for VmState
impl Unpin for VmState
impl UnwindSafe for VmState
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