MCPcopy Create free account
hub / github.com/GraphLite-AI/GraphLite / CastExpression

Class CastExpression

graphlite/src/ast/ast.rs:1235–1239  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1233/// CAST expression: CAST(expr AS type-spec)
1234#[derive(Debug, Clone, Serialize, Deserialize)]
1235pub struct CastExpression {
1236 pub expression: Box<Expression>,
1237 pub target_type: TypeSpec,
1238 pub location: Location,
1239}
1240
1241/// Subquery expression: (subquery) in general expressions
1242#[derive(Debug, Clone, Serialize, Deserialize)]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected