1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
crate::cenum!(BoltKind {
    Null,
    String,
    Boolean,
    Map,
    Integer,
    Float,
    List,
    Node,
    Relation,
    UnboundedRelation,
    Point2D,
    Point3D,
    Bytes,
    Path,
    Duration,
    Date,
    Time,
    LocalTime,
    DateTime,
    LocalDateTime,
    DateTimeZoneId,
});