Skip to main content

toolu_orm_core/fts5/
mod.rs

1//! FTS5 full-text tables on top of the general [`crate::table::TableKind::Virtual`]
2//! mechanism.
3//!
4//! [`Fts5Table`] renders the module arguments — quoted column names,
5//! `UNINDEXED` markers, and the `key = 'value'` options — so callers never
6//! hand-write them. The `#[fts5_table]` proc macro expands into this builder,
7//! so a macro-declared table and a hand-built one cannot drift apart.
8
9mod builder;
10mod options;
11
12pub use builder::{Fts5Table, FTS5_MODULE};
13pub use options::Fts5Options;