surrealpatch/lib/src/key/mod.rs

52 lines
1.1 KiB
Rust
Raw Normal View History

/// KV /
2022-03-20 14:27:56 +00:00
/// NS /!ns{ns}
///
2022-03-20 14:27:56 +00:00
/// Namespace /*{ns}
/// NL /*{ns}!nl{us}
/// NT /*{ns}!nt{tk}
/// DB /*{ns}!db{db}
///
2022-03-20 14:27:56 +00:00
/// Database /*{ns}*{db}
/// DL /*{ns}*{db}!dl{us}
/// DT /*{ns}*{db}!dt{tk}
/// SC /*{ns}*{db}!sc{sc}
/// ST /*{ns}*{db}!st{sc}!tk{tk}
/// TB /*{ns}*{db}!tb{tb}
2022-06-27 16:01:39 +00:00
/// LQ /*{ns}*{db}!lq{lq}
///
2022-03-20 14:27:56 +00:00
/// Table /*{ns}*{db}*{tb}
/// FT /*{ns}*{db}*{tb}!ft{ft}
/// FD /*{ns}*{db}*{tb}!fd{fd}
/// EV /*{ns}*{db}*{tb}!ev{ev}
/// IX /*{ns}*{db}*{tb}!ix{ix}
/// LV /*{ns}*{db}*{tb}!lv{lv}
///
2022-03-20 14:27:56 +00:00
/// Thing /*{ns}*{db}*{tb}*{id}
///
2022-06-15 07:41:23 +00:00
/// Graph /*{ns}*{db}*{tb}~{id}{eg}{fk}
2022-03-20 14:27:56 +00:00
///
2022-06-15 07:41:23 +00:00
/// Index /*{ns}*{db}*{tb}¤{ix}{fd}{id}
///
pub mod database;
pub mod db;
pub mod dl;
pub mod dt;
pub mod ev;
pub mod fd;
pub mod ft;
2022-03-23 14:01:04 +00:00
pub mod graph;
pub mod index;
pub mod ix;
pub mod kv;
2022-06-27 16:01:39 +00:00
pub mod lq;
pub mod lv;
pub mod namespace;
pub mod nl;
pub mod ns;
pub mod nt;
pub mod sc;
pub mod st;
pub mod table;
pub mod tb;
pub mod thing;