rustorm-macros 0.1.2

Procedural macros for RustORM
Documentation
# rustorm-macros


Procedural macros for RustORM.

Provides derive macros for automatically implementing ORM traits on your structs.

Not intended to be used directly — use the [`rustorm`](https://crates.io/crates/rustorm) crate instead.

## Example

```rust
use rustorm::Model;

#[derive(Model)]

#[table(name = "users")]

pub struct User {
    pub id: uuid::Uuid,
    pub name: String,
    pub email: String,
}
```