Skip to main content

cala_cel_interpreter/
cel_type.rs

1#[derive(Debug, Clone, Copy, PartialEq, Eq)]
2pub enum CelType {
3    // Builtins
4    Map,
5    List,
6    Int,
7    UInt,
8    Double,
9    String,
10    Bytes,
11    Bool,
12    Null,
13
14    // Abstract
15    Date,
16    Timestamp,
17    Uuid,
18    Decimal,
19}