contextdb-core 0.3.4

Core types, traits, and error types for contextdb
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod error;
pub mod memory;
pub mod table_meta;
pub mod traits;
pub mod types;

pub use error::{Error, Result};
pub use memory::*;
// Explicit re-exports only — do NOT glob-export `table_meta::*`. `SortDirection`
// collides by name with `contextdb_parser::ast::SortDirection`, so downstream
// crates must use fully-qualified paths at ambiguous sites.
pub use table_meta::{
    ColumnDef, ColumnType, ForeignKeyReference, IndexDecl, IndexKind, PropagationRule,
    SortDirection, StateMachineConstraint, TableMeta,
};
pub use traits::*;
pub use types::*;