We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Getset
1 parent 1187abc commit 6ac08c4Copy full SHA for 6ac08c4
Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "gset"
3
-version = "1.0.2"
+version = "1.0.3"
4
authors = ["Andrew Sonin <sonin.cel@yandex.ru>"]
5
description = "A procedural macro for generating the most basic getters and setters on fields."
6
categories = ["development-tools::procedural-macro-helpers"]
src/lib.rs
@@ -13,6 +13,7 @@ use syn::{
13
mod field_attribute_layout;
14
mod field_attributes;
15
16
+/// Derives getters and setters.
17
#[proc_macro_derive(Getset, attributes(getset))]
18
#[proc_macro_error]
19
pub fn derive_getset(input: TokenStream) -> TokenStream {
0 commit comments