pub enum RPN {
Name(String),
Unary(UnaryOp),
Binary(BinaryOp),
}
Expand description
Elements that make a list of RPN instruction extracted from a math expression.
Variants§
Trait Implementations§
impl StructuralPartialEq for RPN
Auto Trait Implementations§
impl Freeze for RPN
impl RefUnwindSafe for RPN
impl Send for RPN
impl Sync for RPN
impl Unpin for RPN
impl UnwindSafe for RPN
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