sqlx-utils 1.1.3

Utilities for working with SQLx in a structured and efficient way, both when developing and running
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Traits defined by this crate
//!
//! All traits are work in progress and might have breaking changes between versions as the project
//! is in early stages. Any feedback on edge cases with trait or lifetime bounds are appreciated as
//! im developing parallel with my other projects that uses this.

//#![deny(missing_docs)]

use crate::mod_def;

mod_def! {
    pub mod model;
    pub mod sql_filter;
    pub mod repository;
}