evenframe_derive 0.1.6

Derive macros for Evenframe - automatic database schema and CRUD generation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
error: Evenframe derive macro only supports structs with named fields.

       Example of a valid struct:

       struct TupleStruct {
           id: String,
           name: String,
       }
 --> tests/ui/fail/struct_tuple_fields.rs:5:12
  |
5 | pub struct TupleStruct(String, i32);
  |            ^^^^^^^^^^^