pub enum ASTExprOpType {
Show 27 variants
Error,
And,
AndThen,
Or,
OrElse,
Max,
Min,
Minus,
Add,
Sub,
Mul,
Div,
FdivQ,
PdivQ,
PdivR,
ZdivR,
Cond,
Select,
Eq,
Le,
Lt,
Ge,
Gt,
Call,
Access,
Member,
AddressOf,
}
Variants§
Error
And
AndThen
Or
OrElse
Max
Min
Minus
Add
Sub
Mul
Div
FdivQ
PdivQ
PdivR
ZdivR
Cond
Select
Eq
Le
Lt
Ge
Gt
Call
Access
Member
AddressOf
Implementations§
Trait Implementations§
Source§impl Clone for ASTExprOpType
impl Clone for ASTExprOpType
Source§fn clone(&self) -> ASTExprOpType
fn clone(&self) -> ASTExprOpType
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ASTExprOpType
impl Debug for ASTExprOpType
Source§impl PartialEq for ASTExprOpType
impl PartialEq for ASTExprOpType
impl Copy for ASTExprOpType
impl Eq for ASTExprOpType
impl StructuralPartialEq for ASTExprOpType
Auto Trait Implementations§
impl Freeze for ASTExprOpType
impl RefUnwindSafe for ASTExprOpType
impl Send for ASTExprOpType
impl Sync for ASTExprOpType
impl Unpin for ASTExprOpType
impl UnwindSafe for ASTExprOpType
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