9 releases

0.3.0 Feb 3, 2024
0.2.0 Mar 21, 2023
0.1.6 Mar 18, 2023
0.1.5 May 5, 2022
0.1.0 Mar 28, 2021

#21 in Procedural macros

Download history 32097/week @ 2024-01-24 41689/week @ 2024-01-31 34824/week @ 2024-02-07 38387/week @ 2024-02-14 41639/week @ 2024-02-21 46192/week @ 2024-02-28 42463/week @ 2024-03-06 47911/week @ 2024-03-13 48045/week @ 2024-03-20 39422/week @ 2024-03-27 38755/week @ 2024-04-03 40191/week @ 2024-04-10 39547/week @ 2024-04-17 43046/week @ 2024-04-24 40093/week @ 2024-05-01 35409/week @ 2024-05-08

166,064 downloads per month
Used in 256 crates (20 directly)

MIT/Apache

57KB
571 lines

StructMeta

Crates.io Docs.rs Actions Status

Parse Rust's attribute arguments by defining a struct.

Documentation

See #[derive(StructMeta)] documentation for details.

Install

Add this to your Cargo.toml:

[dependencies]
structmeta = "0.3.0"
proc-macro2 = "1.0.78"
syn = "2.0.48"
quote = "1.0.35"

Example

use structmeta::StructMeta;
use syn::{parse_quote, Attribute, LitInt, LitStr};

#[derive(StructMeta, Debug)]
struct MyAttr {
    x: LitInt,
    y: LitStr,
}
let attr: Attribute = parse_quote!(#[my_attr(x = 10, y = "abc")]);
let attr: MyAttr = attr.parse_args().unwrap();
println!("x = {}, y = {}", attr.x, attr.y.value());

This code outputs:

x = 10, y = abc

License

This project is dual licensed under Apache-2.0/MIT. See the two LICENSE-* files for details.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~0.3–0.8MB
~19K SLoC