pub enum Rpn<'e> {
Num(f64),
Var(&'e str),
Fn(&'e str, usize),
Op(Op),
}Variants§
Trait Implementations§
Source§impl<'e, 'c, V, F, LV, LF> ExprCompiler<'e, 'c, Unlocked, V, F, LV, LF, Rpn<'e>> for Expr<Rpn<'e>>
impl<'e, 'c, V, F, LV, LF> ExprCompiler<'e, 'c, Unlocked, V, F, LV, LF, Rpn<'e>> for Expr<Rpn<'e>>
impl<'e> Copy for Rpn<'e>
impl<'e> StructuralPartialEq for Rpn<'e>
Auto Trait Implementations§
impl<'e> Freeze for Rpn<'e>
impl<'e> RefUnwindSafe for Rpn<'e>
impl<'e> Send for Rpn<'e>
impl<'e> Sync for Rpn<'e>
impl<'e> Unpin for Rpn<'e>
impl<'e> UnwindSafe for Rpn<'e>
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