pub enum ExpressionInner {
Show 15 variants
Grouped(GroupedExpression),
Select(SelectExpression),
Infix(InfixExpression),
Ident(IdentExpression),
Int(IntExpression),
Case(CaseExpression),
Prefix(PrefixExpression),
FunctionCall(FunctionCall),
All(All),
Array(Array),
Named(Named),
NullOr(NullOr),
Null(Null),
Between(Between),
NotInfix(NotInfixExpression),
}Variants§
Grouped(GroupedExpression)
Select(SelectExpression)
Infix(InfixExpression)
Ident(IdentExpression)
Int(IntExpression)
Case(CaseExpression)
Prefix(PrefixExpression)
FunctionCall(FunctionCall)
All(All)
Array(Array)
Named(Named)
NullOr(NullOr)
Null(Null)
Between(Between)
NotInfix(NotInfixExpression)
Trait Implementations§
Source§impl Clone for ExpressionInner
impl Clone for ExpressionInner
Source§fn clone(&self) -> ExpressionInner
fn clone(&self) -> ExpressionInner
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExpressionInner
impl Debug for ExpressionInner
Source§impl FmtWithStore for ExpressionInnerwhere
NotInfixExpression: FmtWithStore,
GroupedExpression: MatchFmtWithStore<NotInfixExpression>,
SelectExpression: MatchFmtWithStore<NotInfixExpression>,
InfixExpression: MatchFmtWithStore<NotInfixExpression>,
IdentExpression: MatchFmtWithStore<NotInfixExpression>,
IntExpression: MatchFmtWithStore<NotInfixExpression>,
CaseExpression: MatchFmtWithStore<NotInfixExpression>,
PrefixExpression: MatchFmtWithStore<NotInfixExpression>,
FunctionCall: MatchFmtWithStore<NotInfixExpression>,
All: MatchFmtWithStore<NotInfixExpression>,
Array: MatchFmtWithStore<NotInfixExpression>,
Named: MatchFmtWithStore<NotInfixExpression>,
NullOr: MatchFmtWithStore<NotInfixExpression>,
Null: MatchFmtWithStore<NotInfixExpression>,
Between: MatchFmtWithStore<NotInfixExpression>,
impl FmtWithStore for ExpressionInnerwhere
NotInfixExpression: FmtWithStore,
GroupedExpression: MatchFmtWithStore<NotInfixExpression>,
SelectExpression: MatchFmtWithStore<NotInfixExpression>,
InfixExpression: MatchFmtWithStore<NotInfixExpression>,
IdentExpression: MatchFmtWithStore<NotInfixExpression>,
IntExpression: MatchFmtWithStore<NotInfixExpression>,
CaseExpression: MatchFmtWithStore<NotInfixExpression>,
PrefixExpression: MatchFmtWithStore<NotInfixExpression>,
FunctionCall: MatchFmtWithStore<NotInfixExpression>,
All: MatchFmtWithStore<NotInfixExpression>,
Array: MatchFmtWithStore<NotInfixExpression>,
Named: MatchFmtWithStore<NotInfixExpression>,
NullOr: MatchFmtWithStore<NotInfixExpression>,
Null: MatchFmtWithStore<NotInfixExpression>,
Between: MatchFmtWithStore<NotInfixExpression>,
fn fmt_with_store( &self, f: &mut Formatter<'_>, store: &ExpressionStore, ) -> Result
Source§impl From<ExpressionInner> for Expression
impl From<ExpressionInner> for Expression
Source§fn from(val: ExpressionInner) -> Self
fn from(val: ExpressionInner) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ExpressionInner
impl PartialEq for ExpressionInner
Source§fn eq(&self, other: &ExpressionInner) -> bool
fn eq(&self, other: &ExpressionInner) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExpressionInner
Auto Trait Implementations§
impl Freeze for ExpressionInner
impl RefUnwindSafe for ExpressionInner
impl Send for ExpressionInner
impl Sync for ExpressionInner
impl Unpin for ExpressionInner
impl UnsafeUnpin for ExpressionInner
impl UnwindSafe for ExpressionInner
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