parse-display 0.11.0

Procedural macro to implement Display and FromStr using common settings.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![deny(clippy::use_self)]

use parse_display::*;

#[test]
fn clippy_use_self() {
    #[derive(FromStr)]
    #[allow(dead_code)]
    enum Foo {
        Bar,
        Baz,
    }
}