pub struct Program {
pub data: Vec<DataItem>,
pub code: Vec<Instruction>,
pub code_tab: HashMap<String, usize>,
pub data_tab: HashMap<String, usize>,
}
Fields§
§data: Vec<DataItem>
§code: Vec<Instruction>
§code_tab: HashMap<String, usize>
§data_tab: HashMap<String, usize>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Program
impl RefUnwindSafe for Program
impl Send for Program
impl Sync for Program
impl Unpin for Program
impl UnwindSafe for Program
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