#proc-macro #display #macro-derive #from-str #enums #regex #derive

no-std parse-display

Procedural macro to implement Display and FromStr using common settings

21 releases

0.9.1 May 30, 2024
0.9.0 Feb 4, 2024
0.8.2 Jul 16, 2023
0.8.0 Dec 21, 2022
0.1.0 Jun 15, 2019

#78 in Rust patterns

Download history 22289/week @ 2024-04-05 23532/week @ 2024-04-12 24379/week @ 2024-04-19 25388/week @ 2024-04-26 26264/week @ 2024-05-03 27329/week @ 2024-05-10 28390/week @ 2024-05-17 26674/week @ 2024-05-24 27822/week @ 2024-05-31 26282/week @ 2024-06-07 30551/week @ 2024-06-14 37196/week @ 2024-06-21 37253/week @ 2024-06-28 40375/week @ 2024-07-05 50009/week @ 2024-07-12 39349/week @ 2024-07-19

172,754 downloads per month
Used in 173 crates (71 directly)

MIT/Apache

43KB
498 lines

parse-display

Crates.io Docs.rs Actions Status

This crate provides derive macro Display and FromStr. These macros use common helper attributes to specify the format.

Install

Add this to your Cargo.toml:

[dependencies]
parse-display = "0.9.1"

Documentation

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

Example

use parse_display::{Display, FromStr};

#[derive(Display, FromStr, PartialEq, Debug)]
#[display("{a}-{b}")]
struct X {
  a: u32,
  b: u32,
}
assert_eq!(X { a:10, b:20 }.to_string(), "10-20");
assert_eq!("10-20".parse(), Ok(X { a:10, b:20 }));


#[derive(Display, FromStr, PartialEq, Debug)]
#[display(style = "snake_case")]
enum Y {
  VarA,
  VarB,
}
assert_eq!(Y::VarA.to_string(), "var_a");
assert_eq!("var_a".parse(), Ok(Y::VarA));

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

~2.5–4MB
~71K SLoC