cel-parser 0.10.1

An antlr-based parser for the Common Expression Language (CEL)
Documentation
1
2
3
4
5
6
7
8
9
10
#[derive(Clone, Debug, PartialEq)]
pub enum Val {
    String(String),
    Boolean(bool),
    Int(i64),
    UInt(u64),
    Double(f64),
    Bytes(Vec<u8>),
    Null,
}