pub struct ArithOpExpr<'ir> {
pub op: Operator,
pub values: (Box<IRExpr<'ir>>, Box<IRExpr<'ir>>),
}Fields§
§op: Operator§values: (Box<IRExpr<'ir>>, Box<IRExpr<'ir>>)Trait Implementations§
Source§impl<'ir> Clone for ArithOpExpr<'ir>
impl<'ir> Clone for ArithOpExpr<'ir>
Source§fn clone(&self) -> ArithOpExpr<'ir>
fn clone(&self) -> ArithOpExpr<'ir>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'ir> Debug for ArithOpExpr<'ir>
impl<'ir> Debug for ArithOpExpr<'ir>
Source§impl Display for ArithOpExpr<'_>
impl Display for ArithOpExpr<'_>
Source§impl<'ir> PartialEq for ArithOpExpr<'ir>
impl<'ir> PartialEq for ArithOpExpr<'ir>
impl<'ir> StructuralPartialEq for ArithOpExpr<'ir>
Auto Trait Implementations§
impl<'ir> Freeze for ArithOpExpr<'ir>
impl<'ir> RefUnwindSafe for ArithOpExpr<'ir>
impl<'ir> Send for ArithOpExpr<'ir>
impl<'ir> Sync for ArithOpExpr<'ir>
impl<'ir> Unpin for ArithOpExpr<'ir>
impl<'ir> UnwindSafe for ArithOpExpr<'ir>
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