Enum synfx_dsp_jit::ASTBinOp
source · [−]pub enum ASTBinOp {
Add,
Sub,
Mul,
Div,
Eq,
Ne,
Lt,
Le,
Gt,
Ge,
}
Expand description
Binary operator for the AST
Variants
Add
Addition “+”
Sub
Substraction “-”
Mul
Multiplication “*”
Div
Division “/”
Eq
Equals comparison “==”
Ne
Not Equals comparison “!=”
Lt
Less than comparison “<”
Le
Less or equal comparison “<=”
Gt
Greater than comparison “>”
Ge
Greater or equal comparison “>=”
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ASTBinOp
impl Send for ASTBinOp
impl Sync for ASTBinOp
impl Unpin for ASTBinOp
impl UnwindSafe for ASTBinOp
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more