evenframe_derive 0.1.5

Derive macros for Evenframe - automatic database schema and CRUD generation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use evenframe_derive::Evenframe;

/// Basic struct with id field - should be a table
#[derive(Debug, Clone, Evenframe)]
pub struct User {
    pub id: String,
    pub name: String,
    pub age: i32,
}

fn main() {
    println!("Test passed");
}