lazy_db/
lazy_type.rs

1mod converter;
2pub use converter::*;
3
4#[derive(Debug, PartialEq, Eq, Clone, Copy)]
5#[repr(u8)]
6pub enum LazyType {
7    Void,
8    String,
9    Binary,
10    I8,
11    I16,
12    I32,
13    I64,
14    I128,
15    U8,
16    U16,
17    U32,
18    U64,
19    U128,
20    F32,
21    F64,
22    True,
23    False,
24    Link,
25    Array,
26}