pub enum OpCodes {
Neg,
Sub,
Add,
Mul,
Div,
Lte,
Lt,
Gte,
Gt,
Const(f64),
FreeVar(String),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OpCodes
impl RefUnwindSafe for OpCodes
impl Send for OpCodes
impl Sync for OpCodes
impl Unpin for OpCodes
impl UnwindSafe for OpCodes
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