GridDB data type
Rust data type
example
BOOL
bool
true
BYTE
i8
10i8
SHORT
i16
INTEGER
i32
LONG
i64
FLOAT
f32
DOUBLE
f64
STRING
&str
"yamada"
TIMESTAMP
Timestamp
Timestamp {value: Utc::now().timestamp_millis()}
BLOB
&[u8]
"yamada".as_bytes()