rusql-alchemy 0.5.8

Rust Alchemy is Django ORM like lib for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod builder;
pub mod condition;
pub mod statement;

pub struct Arg {
    pub value: String,
    pub ty: String,
}

#[derive(Default)]
pub struct Query {
    pub placeholders: String,
    pub fields: String,
    pub args: Vec<Arg>,
}