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

macro parse-display-derive

Procedural macro to implement Display and FromStr using common settings

20 releases

0.9.0 Feb 4, 2024
0.8.2 Jul 16, 2023
0.8.1 Jun 10, 2023
0.8.0 Dec 21, 2022
0.1.0 Jun 15, 2019

#15 in #from-str

Download history 21565/week @ 2023-11-27 20529/week @ 2023-12-04 18744/week @ 2023-12-11 17842/week @ 2023-12-18 13781/week @ 2023-12-25 16770/week @ 2024-01-01 20723/week @ 2024-01-08 20718/week @ 2024-01-15 20973/week @ 2024-01-22 24301/week @ 2024-01-29 21397/week @ 2024-02-05 17795/week @ 2024-02-12 21735/week @ 2024-02-19 24222/week @ 2024-02-26 24440/week @ 2024-03-04 9992/week @ 2024-03-11

82,060 downloads per month
Used in 129 crates (3 directly)

MIT/Apache

77KB
2.5K SLoC

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.0"

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
~72K SLoC