pub struct Exp<'a> {
pub ops: Vec<Op<'a>>,
}
Expand description
Expression, internally it uses the Reverse Polish Notation (RPN) notation
Fields§
§ops: Vec<Op<'a>>
Implementations§
Trait Implementations§
impl<'a> Eq for Exp<'a>
impl<'a> StructuralPartialEq for Exp<'a>
Auto Trait Implementations§
impl<'a> Freeze for Exp<'a>
impl<'a> RefUnwindSafe for Exp<'a>
impl<'a> Send for Exp<'a>
impl<'a> Sync for Exp<'a>
impl<'a> Unpin for Exp<'a>
impl<'a> UnwindSafe for Exp<'a>
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