#[repr(i32)]pub enum AExprKind {
Show 17 variants
Undefined = 0,
AexprOp = 1,
AexprOpAny = 2,
AexprOpAll = 3,
AexprDistinct = 4,
AexprNotDistinct = 5,
AexprNullif = 6,
AexprOf = 7,
AexprIn = 8,
AexprLike = 9,
AexprIlike = 10,
AexprSimilar = 11,
AexprBetween = 12,
AexprNotBetween = 13,
AexprBetweenSym = 14,
AexprNotBetweenSym = 15,
AexprParen = 16,
}
Variants§
Undefined = 0
AexprOp = 1
AexprOpAny = 2
AexprOpAll = 3
AexprDistinct = 4
AexprNotDistinct = 5
AexprNullif = 6
AexprOf = 7
AexprIn = 8
AexprLike = 9
AexprIlike = 10
AexprSimilar = 11
AexprBetween = 12
AexprNotBetween = 13
AexprBetweenSym = 14
AexprNotBetweenSym = 15
AexprParen = 16
Implementations§
Trait Implementations§
Source§impl Ord for AExprKind
impl Ord for AExprKind
Source§impl PartialOrd for AExprKind
impl PartialOrd for AExprKind
impl Copy for AExprKind
impl Eq for AExprKind
impl StructuralPartialEq for AExprKind
Auto Trait Implementations§
impl Freeze for AExprKind
impl RefUnwindSafe for AExprKind
impl Send for AExprKind
impl Sync for AExprKind
impl Unpin for AExprKind
impl UnwindSafe for AExprKind
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