13 releases

Uses old Rust 2015

0.0.14 Dec 10, 2019
0.0.13 Jun 12, 2019
0.0.12 Sep 11, 2018
0.0.11 Apr 9, 2018
0.0.2 Dec 31, 2016

#5 in #setters

Download history 4/week @ 2024-02-12 15/week @ 2024-02-19 38/week @ 2024-02-26 12/week @ 2024-03-04

69 downloads per month
Used in 5 crates (via telebot)

MIT license

18KB
304 lines

#[derive(accessors)]: getters and setters for Rust (WIP)

This is a work in progress! The API is subject to change.

We use the new macros 1.1 support in nightly Rust to automatically generate basic getters and setters. This is useful if you have a library that exports a struct with lots of fields, but you don't want to make the fields themselves public.

If you specify #[setters(into)], you can generate setters which use Into to automatically convert to the desired type.

#![feature(proc_macro)]

#[macro_use]
extern crate accessors;

#[derive(getters, setters)]
#[setters(into)]
struct Simple {
    field: String,
}

fn main() {
    let mut s = Simple { field: "hello".to_owned() };
    println!("{}", s.field());
    s.set_field("there");
}

Right now, you can only use this with nightly Rust, but David Tolnay has laid out a roadmap for how to get it working with stable Rust.

Dependencies

~1.5MB
~42K SLoC