diesel-sort-struct-fields 0.1.3

Macro to sort struct fields and `table!` columns to avoid subtle bugs
Documentation
1
2
3
4
5
6
7
8
9
use diesel_sort_struct_fields::sort_fields;

#[sort_fields(foo)]
pub struct A {
    a: i32,
    b: i32,
}

fn main() {}