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
13
use evenframe_derive::Evenframe;

/// Enum with unit variants
#[derive(Debug, Clone, Evenframe)]
pub enum Status {
    Active,
    Inactive,
    Pending,
}

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