sassi-macros 0.1.0-beta.2

Support proc-macro crate re-exported by sassi for ordinary adopters.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! `#[derive(Cacheable)]` requires a field literally named `id`.

use sassi::Cacheable;

#[derive(Cacheable)]
struct NoIdHere {
    name: String,
    age: u32,
}

fn main() {}