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
12
//! `#[derive(Cacheable)]` should reject generic structs with a clear
//! diagnostic until generic field companion structs are supported.

use sassi::Cacheable;

#[derive(Cacheable)]
struct GenericEntity<T> {
    id: i64,
    value: T,
}

fn main() {}