pub struct ForthCompiler {
pub sm: StackMachine,
/* private fields */
}
Fields§
§sm: StackMachine
Implementations§
Source§impl ForthCompiler
impl ForthCompiler
pub fn execute_string( &mut self, s: &str, gas_limit: GasLimit, ) -> Result<(), ForthError>
Trait Implementations§
Source§impl Default for ForthCompiler
impl Default for ForthCompiler
Source§fn default() -> ForthCompiler
fn default() -> ForthCompiler
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ForthCompiler
impl !RefUnwindSafe for ForthCompiler
impl !Send for ForthCompiler
impl !Sync for ForthCompiler
impl Unpin for ForthCompiler
impl !UnwindSafe for ForthCompiler
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