worktable_macros 0.9.0

Proc-macro companion crate for worktable: the worktable! macro and its derives. Formerly published as worktable_codegen.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod column;
mod config;
mod index;
pub mod operation;
mod primary_key;
mod queries;

pub use column::{Columns, Row};
pub use config::Config;
pub use index::Index;
pub use operation::Operation;
pub use primary_key::{GeneratorType, PrimaryKey};
pub use queries::Queries;