sqlx_utils/traits/
mod.rs

1//! Traits defined by this crate
2//!
3//! All traits are work in progress and might have breaking changes between versions as the project
4//! is in early stages. Any feedback on edge cases with trait or lifetime bounds are appreciated as
5//! im developing parallel with my other projects that uses this.
6
7//#![deny(missing_docs)]
8
9use crate::mod_def;
10
11mod_def! {
12    pub mod model;
13    pub mod sql_filter;
14    pub mod repository;
15}