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
//! `watermark_field` must name a field.

use sassi::Cacheable;

#[derive(Cacheable)]
#[cacheable(watermark_field = "")]
struct EmptyWatermarkField {
    id: i64,
    updated_at: i64,
}

fn main() {}