pub struct RpnExpr(/* private fields */);Expand description
A Reverse Polish Notation expression.
§Printing
An expression can be printed in one of two ways.
By default, the expression is printed using Reverse Polish Notation still; however, if the
# “alternate printing” flag is passed, the expression will be pretty-printed using infix
notation instead, with a minimal amount of parentheses.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RpnExpr
impl RefUnwindSafe for RpnExpr
impl Send for RpnExpr
impl Sync for RpnExpr
impl Unpin for RpnExpr
impl UnwindSafe for RpnExpr
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