| 966 | /// Cast expression |
| 967 | #[derive(Clone, PartialEq, Eq, PartialOrd, Hash, Debug)] |
| 968 | pub struct Cast { |
| 969 | /// The expression being cast |
| 970 | pub expr: Box<Expr>, |
| 971 | /// The `DataType` the expression will yield |
| 972 | pub field: FieldRef, |
| 973 | } |
| 974 | |
| 975 | impl Cast { |
| 976 | /// Create a new Cast expression |
no outgoing calls
searching dependent graphs…