Skip to main content

easy_sql/markers/
mod.rs

1//! Marker traits used by the macros to enforce query constraints.
2//!
3//! These are generally implemented by derive/macros or driver integrations, not by hand.
4
5pub(crate) mod driver;
6pub use driver::*;
7
8mod query;
9pub use query::*;