protospec_build/ast/expression/
cast.rs

1use super::*;
2
3#[derive(Clone, Serialize, Deserialize)]
4pub struct CastExpression {
5    pub inner: Box<Expression>,
6    pub type_: Type,
7    pub span: Span,
8}
9impl_node!(CastExpression);