derive_setters 0.1.9

Rust macro to automatically generates setter methods for a struct's fields.
Documentation
1
2
3
4
5
6
7
8
#![cfg(feature = "__NOT_PUBLIC__nightly_testing")]

#[test]
fn trybuild() {
    let t = trybuild::TestCases::new();
    t.pass("tests/compile-pass/*.rs");
    t.compile_fail("tests/compile-fail/*.rs");
}