mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-11 18:36:15 -04:00
31 lines
695 B
Rust
31 lines
695 B
Rust
#![forbid(unsafe_op_in_unsafe_fn)]
|
|
|
|
//! The `spacetimedb_table` crate provides a `Table` implementation
|
|
//! and various ways to interact with a table.
|
|
|
|
// For now, all of these are public.
|
|
// We'll make as much as possible private when mem-arch has merged fully.
|
|
|
|
pub mod bflatn_from;
|
|
pub mod bflatn_to;
|
|
pub mod blob_store;
|
|
pub mod eq;
|
|
mod eq_to_pv;
|
|
pub mod fixed_bit_set;
|
|
pub mod indexes;
|
|
pub mod page;
|
|
pub mod page_pool;
|
|
pub mod pages;
|
|
pub mod pointer_map;
|
|
pub mod read_column;
|
|
pub mod row_hash;
|
|
pub mod row_type_visitor;
|
|
pub mod static_bsatn_validator;
|
|
pub mod static_layout;
|
|
pub mod table;
|
|
pub mod table_index;
|
|
pub mod var_len;
|
|
|
|
#[doc(hidden)] // Used in tests and benchmarks.
|
|
pub mod util;
|