pub enum CastKind {
Cast,
TryCast,
SafeCast,
DoubleColon,
}Expand description
The syntax used for in a cast expression.
Variants§
Cast
The standard SQL cast syntax, e.g. CAST(<expr> as <datatype>)
TryCast
SafeCast
DoubleColon
<expr> :: <datatype>