dsync 0.0.1

Generate rust structs & query functions from diesel schema files.
Documentation
1
2
3
4
5
6
7
8
9
10
// @generated automatically by Diesel CLI.

diesel::table! {
    todos (id) {
        id -> Int4,
        text -> Text,
        created_at -> Timestamptz,
        updated_at -> Timestamptz,
    }
}