pub enum Expr<T: AstInfo> {
Show 36 variants
Identifier(Vec<Ident>),
QualifiedWildcard(Vec<Ident>),
FieldAccess {
expr: Box<Expr<T>>,
field: Ident,
},
WildcardAccess(Box<Expr<T>>),
Parameter(usize),
Not {
expr: Box<Expr<T>>,
},
And {
left: Box<Expr<T>>,
right: Box<Expr<T>>,
},
Or {
left: Box<Expr<T>>,
right: Box<Expr<T>>,
},
IsExpr {
expr: Box<Expr<T>>,
construct: IsExprConstruct<T>,
negated: bool,
},
InList {
expr: Box<Expr<T>>,
list: Vec<Expr<T>>,
negated: bool,
},
InSubquery {
expr: Box<Expr<T>>,
subquery: Box<Query<T>>,
negated: bool,
},
Like {
expr: Box<Expr<T>>,
pattern: Box<Expr<T>>,
escape: Option<Box<Expr<T>>>,
case_insensitive: bool,
negated: bool,
},
Between {
expr: Box<Expr<T>>,
negated: bool,
low: Box<Expr<T>>,
high: Box<Expr<T>>,
},
Op {
op: Op,
expr1: Box<Expr<T>>,
expr2: Option<Box<Expr<T>>>,
},
Cast {
expr: Box<Expr<T>>,
data_type: T::DataType,
},
Collate {
expr: Box<Expr<T>>,
collation: UnresolvedItemName,
},
HomogenizingFunction {
function: HomogenizingFunction,
exprs: Vec<Expr<T>>,
},
NullIf {
l_expr: Box<Expr<T>>,
r_expr: Box<Expr<T>>,
},
Nested(Box<Expr<T>>),
Row {
exprs: Vec<Expr<T>>,
},
Value(Value),
Function(Function<T>),
Case {
operand: Option<Box<Expr<T>>>,
conditions: Vec<Expr<T>>,
results: Vec<Expr<T>>,
else_result: Option<Box<Expr<T>>>,
},
Exists(Box<Query<T>>),
Subquery(Box<Query<T>>),
AnySubquery {
left: Box<Expr<T>>,
op: Op,
right: Box<Query<T>>,
},
AnyExpr {
left: Box<Expr<T>>,
op: Op,
right: Box<Expr<T>>,
},
AllSubquery {
left: Box<Expr<T>>,
op: Op,
right: Box<Query<T>>,
},
AllExpr {
left: Box<Expr<T>>,
op: Op,
right: Box<Expr<T>>,
},
Array(Vec<Expr<T>>),
ArraySubquery(Box<Query<T>>),
List(Vec<Expr<T>>),
ListSubquery(Box<Query<T>>),
Map(Vec<MapEntry<T>>),
MapSubquery(Box<Query<T>>),
Subscript {
expr: Box<Expr<T>>,
positions: Vec<SubscriptPosition<T>>,
},
}
Expand description
An SQL expression of any type.
The parser does not distinguish between expressions of different types
(e.g. boolean vs string), so the caller must handle expressions of
inappropriate type, like WHERE 1
or SELECT 1=1
, as necessary.
Variants§
Identifier(Vec<Ident>)
Identifier e.g. table name or column name
QualifiedWildcard(Vec<Ident>)
Qualified wildcard, e.g. alias.*
or schema.table.*
.
FieldAccess
A field access, like (expr).foo
.
WildcardAccess(Box<Expr<T>>)
A wildcard field access, like (expr).*
.
Note that this is different from QualifiedWildcard
in that the
wildcard access occurs on an arbitrary expression, rather than a
qualified name. The distinction is important for PostgreSQL
compatibility.
Parameter(usize)
A positional parameter, e.g., $1
or $42
Not
Boolean negation
And
Boolean and
Or
Boolean or
IsExpr
IS {NULL, TRUE, FALSE, UNKNOWN}
expression
InList
[ NOT ] IN (val1, val2, ...)
InSubquery
[ NOT ] IN (SELECT ...)
Like
<expr> [ NOT ] {LIKE, ILIKE} <pattern> [ ESCAPE <escape> ]
Fields
Between
<expr> [ NOT ] BETWEEN <low> AND <high>
Op
Unary or binary operator
Cast
CAST an expression to a different data type e.g. CAST(foo AS VARCHAR(123))
Collate
expr COLLATE collation
HomogenizingFunction
COALESCE(<expr>, ...)
or GREATEST(<expr>, ...)
or LEAST(<expr>
, …)
While COALESCE/GREATEST/LEAST have the same syntax as a function call, their semantics are extremely unusual, and are better captured with a dedicated AST node.
NullIf
NULLIF(expr, expr)
While NULLIF has the same syntax as a function call, it is not evaluated as a function within Postgres.
Nested(Box<Expr<T>>)
Nested expression e.g. (foo > bar)
or (1)
Row
A row constructor like ROW(<expr>...)
or (<expr>, <expr>...)
.
Value(Value)
A literal value, such as string, number, date or NULL
Function(Function<T>)
Scalar function call e.g. LEFT(foo, 5)
Case
CASE [<operand>] WHEN <condition> THEN <result> ... [ELSE <result>] END
Note we only recognize a complete single expression as <condition>
,
not < 0
nor 1, 2, 3
as allowed in a <simple when clause>
per
https://jakewheat.github.io/sql-overview/sql-2011-foundation-grammar.html#simple-when-clause
Fields
Exists(Box<Query<T>>)
An exists expression EXISTS(SELECT ...)
, used in expressions like
WHERE EXISTS (SELECT ...)
.
Subquery(Box<Query<T>>)
A parenthesized subquery (SELECT ...)
, used in expression like
SELECT (subquery) AS x
or WHERE (subquery) = x
AnySubquery
<expr> <op> ANY/SOME (<query>)
AnyExpr
<expr> <op> ANY (<array_expr>)
AllSubquery
<expr> <op> ALL (<query>)
AllExpr
<expr> <op> ALL (<array_expr>)
Array(Vec<Expr<T>>)
ARRAY[<expr>*]
ArraySubquery(Box<Query<T>>)
List(Vec<Expr<T>>)
LIST[<expr>*]
ListSubquery(Box<Query<T>>)
Map(Vec<MapEntry<T>>)
MAP[<expr>*]
MapSubquery(Box<Query<T>>)
Subscript
<expr>([<expr>(:<expr>)?])+
Implementations§
Source§impl<T: AstInfo> Expr<T>
impl<T: AstInfo> Expr<T>
pub fn null() -> Expr<T>
pub fn number<S>(n: S) -> Expr<T>
pub fn negate(self) -> Expr<T>
pub fn and(self, right: Expr<T>) -> Expr<T>
pub fn or(self, right: Expr<T>) -> Expr<T>
pub fn binop(self, op: Op, right: Expr<T>) -> Expr<T>
pub fn lt(self, right: Expr<T>) -> Expr<T>
pub fn lt_eq(self, right: Expr<T>) -> Expr<T>
pub fn gt(self, right: Expr<T>) -> Expr<T>
pub fn gt_eq(self, right: Expr<T>) -> Expr<T>
pub fn equals(self, right: Expr<T>) -> Expr<T>
pub fn not_equals(self, right: Expr<T>) -> Expr<T>
pub fn minus(self, right: Expr<T>) -> Expr<T>
pub fn multiply(self, right: Expr<T>) -> Expr<T>
pub fn modulo(self, right: Expr<T>) -> Expr<T>
pub fn divide(self, right: Expr<T>) -> Expr<T>
pub fn cast(self, data_type: T::DataType) -> Expr<T>
pub fn call(name: T::ItemName, args: Vec<Expr<T>>) -> Expr<T>
pub fn call_nullary(name: T::ItemName) -> Expr<T>
pub fn call_unary(self, name: T::ItemName) -> Expr<T>
pub fn take(&mut self) -> Expr<T>
Trait Implementations§
Source§impl<T: AstInfo> AstDisplay for Expr<T>
impl<T: AstInfo> AstDisplay for Expr<T>
fn fmt<W: Write>(&self, f: &mut AstFormatter<W>)
fn to_ast_string_simple(&self) -> String
fn to_ast_string_stable(&self) -> String
fn to_ast_string_redacted(&self) -> String
fn to_ast_string(&self, format_mode: FormatMode) -> String
Source§impl<T: Ord + AstInfo> Ord for Expr<T>
impl<T: Ord + AstInfo> Ord for Expr<T>
Source§impl<T: PartialOrd + AstInfo> PartialOrd for Expr<T>where
T::DataType: PartialOrd,
impl<T: PartialOrd + AstInfo> PartialOrd for Expr<T>where
T::DataType: PartialOrd,
Source§impl<'ast, T: AstInfo> VisitMutNode<'ast, T> for Expr<T>
impl<'ast, T: AstInfo> VisitMutNode<'ast, T> for Expr<T>
impl<T: Eq + AstInfo> Eq for Expr<T>
impl<T: AstInfo> StructuralPartialEq for Expr<T>
Auto Trait Implementations§
impl<T> Freeze for Expr<T>
impl<T> RefUnwindSafe for Expr<T>where
<T as AstInfo>::DataType: RefUnwindSafe,
<T as AstInfo>::ItemName: RefUnwindSafe,
<T as AstInfo>::ClusterName: RefUnwindSafe,
<T as AstInfo>::SchemaName: RefUnwindSafe,
<T as AstInfo>::CteId: RefUnwindSafe,
<T as AstInfo>::DatabaseName: RefUnwindSafe,
<T as AstInfo>::RoleName: RefUnwindSafe,
impl<T> Send for Expr<T>
impl<T> Sync for Expr<T>
impl<T> Unpin for Expr<T>
impl<T> UnwindSafe for Expr<T>where
<T as AstInfo>::DataType: UnwindSafe + RefUnwindSafe,
<T as AstInfo>::ItemName: UnwindSafe + RefUnwindSafe,
<T as AstInfo>::ClusterName: UnwindSafe + RefUnwindSafe,
<T as AstInfo>::SchemaName: UnwindSafe + RefUnwindSafe,
<T as AstInfo>::CteId: UnwindSafe + RefUnwindSafe,
<T as AstInfo>::DatabaseName: UnwindSafe + RefUnwindSafe,
<T as AstInfo>::RoleName: UnwindSafe + RefUnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request
Source§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
Source§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the foreground set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red()
and
green()
, which have the same functionality but are
pithier.
§Example
Set foreground color to white using fg()
:
use yansi::{Paint, Color};
painted.fg(Color::White);
Set foreground color to white using white()
.
use yansi::Paint;
painted.white();
Source§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
Source§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
Source§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
Source§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
Source§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
Source§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
Source§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
Source§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
Source§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the background set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red()
and
on_green()
, which have the same functionality but
are pithier.
§Example
Set background color to red using fg()
:
use yansi::{Paint, Color};
painted.bg(Color::Red);
Set background color to red using on_red()
.
use yansi::Paint;
painted.on_red();
Source§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
Source§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
Source§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
Source§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
Source§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
Source§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
Source§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
Source§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
Source§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
Source§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
Source§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling Attribute
value
.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold()
and
underline()
, which have the same functionality
but are pithier.
§Example
Make text bold using attr()
:
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);
Make text bold using using bold()
.
use yansi::Paint;
painted.bold();
Source§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
Source§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi
Quirk
value
.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask()
and
wrap()
, which have the same functionality but are
pithier.
§Example
Enable wrapping using .quirk()
:
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);
Enable wrapping using wrap()
.
use yansi::Paint;
painted.wrap();
Source§fn clear(&self) -> Painted<&T>
👎Deprecated since 1.0.1: renamed to resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.
fn clear(&self) -> Painted<&T>
resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.Source§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the Condition
value
applies. Replaces any previous condition.
See the crate level docs for more details.
§Example
Enable styling painted
only when both stdout
and stderr
are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PreferredContainer for T
impl<T> PreferredContainer for T
Source§impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
Source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
std::ops::AddAssign
, for types that do not implement AddAssign
.