chryso-metadata 0.0.2

Chryso metadata crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum DataType {
    Int,
    Float,
    Bool,
    String,
    Unknown,
}

#[derive(Debug, Clone)]
pub struct TypedExpr {
    pub data_type: DataType,
}