| 989 | /// TryCast Expression |
| 990 | #[derive(Clone, PartialEq, Eq, PartialOrd, Hash, Debug)] |
| 991 | pub struct TryCast { |
| 992 | /// The expression being cast |
| 993 | pub expr: Box<Expr>, |
| 994 | /// The `DataType` the expression will yield |
| 995 | pub field: FieldRef, |
| 996 | } |
| 997 | |
| 998 | impl TryCast { |
| 999 | /// Create a new TryCast expression |
no outgoing calls
searching dependent graphs…