teo_runtime/database/mongo/
type.rs

1use serde::Serialize;
2
3#[derive(Debug, Serialize, Clone, PartialEq, Eq, Hash)]
4pub enum MongoDBType {
5    String,
6    Bool,
7    Int,
8    Long,
9    Double,
10    Date,
11    Timestamp,
12    BinData,
13    ObjectId,
14    Array(Box<MongoDBType>),
15}