rust-query 0.9.1

A query builder using rust concepts.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use rust_query::migration::schema;

#[schema(Schema)]
pub mod vN {
    #[no_reference]
    pub struct SomeTable {
        pub data: String,
    }
    pub struct NotAllowed {
        pub marker: rust_query::TableRow<SomeTable>,
    }
}

fn main() {}