pub struct Program {
pub commands: Ast,
pub current_line: usize,
pub variable: HashMap<String, Data>,
pub function: HashMap<String, Ast>,
pub std_commands: Vec<String>,
}
Fields§
§commands: Ast
§current_line: usize
§variable: HashMap<String, Data>
§function: HashMap<String, Ast>
§std_commands: Vec<String>
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