surrealdb-sql 1.1.0

Full type definitions for the SurrealQL query language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! vs is a module to handle Versionstamps.
//! This module is supplemental to the kvs::tx module and is not intended to be used directly
//! by applications.
//! This module might be migrated into the kvs or kvs::tx module in the future.

pub type Versionstamp = [u8; 10];

pub(crate) mod conv;
pub(crate) mod oracle;

pub use self::conv::*;
pub use self::oracle::*;