1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
//! This crate provides derive macro `Display` and `FromStr`.
//! These macros use common helper attributes to specify the format.
//!
//! See [`#[derive(Display)]`](derive@Display) for details.
//!
//! ## Examples
//!
//! ```rust
//! 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));
//! ```
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(feature = "docs", feature(doc_auto_cfg))]

use core::convert::Infallible;
use core::fmt::{Display, Formatter, Result};

#[cfg(test)]
mod tests;

#[doc(hidden)]
pub mod helpers;

#[cfg(feature = "std")]
mod helpers_std;

// #[include_doc("display.md", start)]
/// Derive [`Display`].
///
/// ## Helper attributes
///
/// `#[derive(Display)]` and `#[derive(FromStr)]` use common helper attributes.
///
/// - `#[derive(Display)]` use `#[display]`.
/// - `#[derive(FromStr)]` use both `#[display]` and `#[from_str]`, with `#[from_str]` having priority.
///
/// Helper attributes can be written in the following positions.
///
/// | attribute                                                     | `#[display]` | `#[from_str]` | struct | enum | variant | field |
/// | ------------------------------------------------------------- | ------------ | ------------- | ------ | ---- | ------- | ----- |
/// | [`#[display("...")]`](#display)                               | ✔            |               | ✔      | ✔    | ✔       | ✔     |
/// | [`#[display(style = "...")]`](#displaystyle--)                | ✔            |               |        | ✔    | ✔       |       |
/// | [`#[display(with = ...)]`](#displaywith---from_strwith--)     | ✔            | ✔             |        |      |         | ✔     |
/// | [`#[display(bound(...))]`](displaybound-from_strbound)        | ✔            | ✔             | ✔      | ✔    | ✔       | ✔     |
/// | [`#[display(crate = ...)]`](#displaycrate--)                  | ✔            |               | ✔      | ✔    |         |       |
/// | [`#[display(dump)]`](#displaydump-from_strdump)               | ✔            | ✔             | ✔      | ✔    |         |       |
/// | [`#[from_str(regex = "...")]`](#from_strregex--)              |              | ✔             | ✔      | ✔    | ✔       | ✔     |
/// | [`#[from_str(new = ...)]`](#from_strnew--)                    |              | ✔             | ✔      |      | ✔       |       |
/// | [`#[from_str(ignore)]`](#from_strignore)                      |              | ✔             |        |      | ✔       |       |
/// | [`#[from_str(default)]`](#from_strdefault)                    |              | ✔             | ✔      |      |         | ✔     |
/// | [`#[from_str(default_fields(...))]`](#from_strdefault_fields) |              | ✔             | ✔      | ✔    | ✔       |       |
///
/// ## `#[display("...")]`
///
/// Specifies the format using a syntax similar to `std::format!()`.
///
/// However, unlike `std::format!()`, `{}` has the following meaning.
///
/// | format              | struct | enum | variant | field | description                                                                         |
/// | ------------------- | ------ | ---- | ------- | ----- | ----------------------------------------------------------------------------------- |
/// | `{a}`, `{b}`, `{1}` | ✔      | ✔    | ✔       | ✔     | Use a field with the specified name.                                                |
/// | `{a.b.c}`           | ✔      | ✔    | ✔       | ✔     | Use a nested field.                                                                 |
/// | `{:x}`, `{:?}`      | ✔      | ✔    |         |       | Use format traits other than [`Display`] for `self`. (e.g. [`LowerHex`], [`Debug`]) |
/// | `{}`                |        | ✔    | ✔       |       | Use a variant name of enum.                                                         |
/// | `{}`                |        |      |         | ✔     | Use the field itself.                                                               |
///
/// [`LowerHex`]: std::fmt::LowerHex
///
/// ### Struct format
///
/// By writing `#[display("..")]`, you can specify the format used by `Display` and `FromStr`.
///
/// ```rust
/// use parse_display::{Display, FromStr};
///
/// #[derive(Display, FromStr, PartialEq, Debug)]
/// #[display("{a}-{b}")]
/// struct MyStruct {
///   a: u32,
///   b: u32,
/// }
/// assert_eq!(MyStruct { a:10, b:20 }.to_string(), "10-20");
/// assert_eq!("10-20".parse(), Ok(MyStruct { a:10, b:20 }));
///
/// #[derive(Display, FromStr, PartialEq, Debug)]
/// #[display("{0}+{1}")]
/// struct MyTuple(u32, u32);
/// assert_eq!(MyTuple(10, 20).to_string(), "10+20");
/// assert_eq!("10+20".parse(), Ok(MyTuple(10, 20)));
/// ```
///
/// ### Newtype pattern
///
/// If the struct has only one field, the format can be omitted.
/// In this case, the only field is used.
///
/// ```rust
/// use parse_display::{Display, FromStr};
///
/// #[derive(Display, FromStr, PartialEq, Debug)]
/// struct NewType(u32);
/// assert_eq!(NewType(10).to_string(), "10");
/// assert_eq!("10".parse(), Ok(NewType(10)));
/// ```
///
/// ### Enum format
///
/// In enum, you can specify the format for each variant.
///
/// ```rust
/// use parse_display::{Display, FromStr};
///
/// #[derive(Display, FromStr, PartialEq, Debug)]
/// enum MyEnum {
///   #[display("aaa")]
///   VarA,
///   #[display("bbb")]
///   VarB,
/// }
/// assert_eq!(MyEnum::VarA.to_string(), "aaa");
/// assert_eq!(MyEnum::VarB.to_string(), "bbb");
/// assert_eq!("aaa".parse(), Ok(MyEnum::VarA));
/// assert_eq!("bbb".parse(), Ok(MyEnum::VarB));
/// ```
///
/// In enum format, `{}` means variant name.
/// Variant name style (e.g. snake_case, camelCase, ...) can be specified by [`#[from_str(style = "...")]`](#displaystyle--).
///
/// ```rust
/// use parse_display::{Display, FromStr};
///
/// #[derive(Display, FromStr, PartialEq, Debug)]
/// enum MyEnum {
///   #[display("aaa-{}")]
///   VarA,
///   #[display("bbb-{}")]
///   VarB,
/// }
/// assert_eq!(MyEnum::VarA.to_string(), "aaa-VarA");
/// assert_eq!(MyEnum::VarB.to_string(), "bbb-VarB");
/// assert_eq!("aaa-VarA".parse(), Ok(MyEnum::VarA));
/// assert_eq!("bbb-VarB".parse(), Ok(MyEnum::VarB));
///
/// #[derive(Display, FromStr, PartialEq, Debug)]
/// #[display(style = "snake_case")]
/// enum MyEnumSnake {
///   #[display("{}")]
///   VarA,
/// }
/// assert_eq!(MyEnumSnake::VarA.to_string(), "var_a");
/// assert_eq!("var_a".parse(), Ok(MyEnumSnake::VarA));
/// ```
///
/// By writing a format on enum instead of variant, you can specify the format common to multiple variants.
///
/// ```rust
/// use parse_display::{Display, FromStr};
///
/// #[derive(Display, FromStr, PartialEq, Debug)]
/// #[display("xxx-{}")]
/// enum MyEnum {
///   VarA,
///   VarB,
/// }
/// assert_eq!(MyEnum::VarA.to_string(), "xxx-VarA");
/// assert_eq!(MyEnum::VarB.to_string(), "xxx-VarB");
/// assert_eq!("xxx-VarA".parse(), Ok(MyEnum::VarA));
/// assert_eq!("xxx-VarB".parse(), Ok(MyEnum::VarB));
/// ```
///
/// ### Unit variants
///
/// If all variants has no field, format can be omitted.
/// In this case, variant name is used.
///
/// ```rust
/// use parse_display::{Display, FromStr};
///
/// #[derive(Display, FromStr, PartialEq, Debug)]
/// enum MyEnum {
///   VarA,
///   VarB,
/// }
/// assert_eq!(MyEnum::VarA.to_string(), "VarA");
/// assert_eq!(MyEnum::VarB.to_string(), "VarB");
/// assert_eq!("VarA".parse(), Ok(MyEnum::VarA));
/// assert_eq!("VarB".parse(), Ok(MyEnum::VarB));
/// ```
///
/// ### Field format
///
/// You can specify the format of the field.
/// In field format, `{}` means the field itself.
///
/// ```rust
/// use parse_display::{Display, FromStr};
///
/// #[derive(Display, FromStr, PartialEq, Debug)]
/// #[display("{a}, {b}")]
/// struct MyStruct {
///   #[display("a is {}")]
///   a: u32,
///   #[display("b is {}")]
///   b: u32,
/// }
/// assert_eq!(MyStruct { a:10, b:20 }.to_string(), "a is 10, b is 20");
/// assert_eq!("a is 10, b is 20".parse(), Ok(MyStruct { a:10, b:20 }));
///
/// #[derive(Display, FromStr, PartialEq, Debug)]
/// #[display("{0}, {1}")]
/// struct MyTuple(#[display("first is {}")] u32, #[display("next is {}")] u32);
/// assert_eq!(MyTuple(10, 20).to_string(), "first is 10, next is 20");
/// assert_eq!("first is 10, next is 20".parse(), Ok(MyTuple(10, 20)));
///
/// #[derive(Display, FromStr, PartialEq, Debug)]
/// enum MyEnum {
///   #[display("this is A {0}")]
///   VarA(#[display("___{}___")] u32),
/// }
/// assert_eq!(MyEnum::VarA(10).to_string(), "this is A ___10___");
/// assert_eq!("this is A ___10___".parse(), Ok(MyEnum::VarA(10)));
/// ```
///
/// ### Nested field
///
/// You can use nested field, e.g. `{x.a}` .
///
/// ```rust
/// use parse_display::{Display, FromStr};
///
/// #[derive(PartialEq, Debug, Default)]
/// struct X {
///     a: u32,
///     b: u32,
/// }
///
/// #[derive(FromStr, Display, PartialEq, Debug)]
/// #[display("{x.a}")]
/// struct Y {
///     #[from_str(default)]
///     x: X,
/// }
/// assert_eq!(Y { x: X { a: 10, b: 20 } }.to_string(), "10");
/// assert_eq!("10".parse(), Ok(Y { x: X { a: 10, b: 0 } }));
/// ```
///
/// When using nested field, you need to use [`#[from_str(default)]`](#from_strdefault) to implement `FromStr`.
///
/// ### Format parameter
///
/// Like `std::format!()`, format parameter can be specified.
///
/// ```rust
/// use parse_display::{Display, FromStr};
///
/// #[derive(Display, PartialEq, Debug)]
/// #[display("{a:>04}")]
/// struct WithFormatParameter {
///   a: u32,
/// }
/// assert_eq!(WithFormatParameter { a:5 }.to_string(), "0005");
/// ```
///
/// ## `#[display(style = "...")]`
///
/// By writing `#[display(style = "...")]`, you can specify the variant name style.
/// The following styles are available.
///
/// - `none`
/// - `lowercase`
/// - `UPPERCASE`
/// - `snake_case`
/// - `SNAKE_CASE`
/// - `camelCase`
/// - `CamelCase`
/// - `kebab-case`
/// - `KEBAB-CASE`
/// - `Title Case`
/// - `Title case`
/// - `title case`
/// - `TITLE CASE`
///
/// ```rust
/// use parse_display::{Display, FromStr};
///
/// #[derive(Display, FromStr, PartialEq, Debug)]
/// #[display(style = "snake_case")]
/// enum MyEnum {
///   VarA,
///   VarB,
/// }
/// assert_eq!(MyEnum::VarA.to_string(), "var_a");
/// assert_eq!("var_a".parse(), Ok(MyEnum::VarA));
///
/// #[derive(Display, FromStr, PartialEq, Debug)]
/// enum StyleExample {
///   #[display(style = "none")]
///   VarA1,
///   #[display(style = "none")]
///   varA2,
///   #[display(style = "lowercase")]
///   VarB,
///   #[display(style = "UPPERCASE")]
///   VarC,
///   #[display(style = "snake_case")]
///   VarD,
///   #[display(style = "SNAKE_CASE")]
///   VarE,
///   #[display(style = "camelCase")]
///   VarF,
///   #[display(style = "CamelCase")]
///   VarG1,
///   #[display(style = "CamelCase")]
///   varG2,
///   #[display(style = "kebab-case")]
///   VarH,
///   #[display(style = "KEBAB-CASE")]
///   VarI,
///   #[display(style = "Title Case")]
///   VarJ,
///   #[display(style = "Title case")]
///   VarK,
///   #[display(style = "title case")]
///   VarL,
///   #[display(style = "TITLE CASE")]
///   VarM,
/// }
/// assert_eq!(StyleExample::VarA1.to_string(), "VarA1");
/// assert_eq!(StyleExample::varA2.to_string(), "varA2");
/// assert_eq!(StyleExample::VarB.to_string(), "varb");
/// assert_eq!(StyleExample::VarC.to_string(), "VARC");
/// assert_eq!(StyleExample::VarD.to_string(), "var_d");
/// assert_eq!(StyleExample::VarE.to_string(), "VAR_E");
/// assert_eq!(StyleExample::VarF.to_string(), "varF");
/// assert_eq!(StyleExample::VarG1.to_string(), "VarG1");
/// assert_eq!(StyleExample::varG2.to_string(), "VarG2");
/// assert_eq!(StyleExample::VarH.to_string(), "var-h");
/// assert_eq!(StyleExample::VarI.to_string(), "VAR-I");
/// assert_eq!(StyleExample::VarJ.to_string(), "Var J");
/// assert_eq!(StyleExample::VarK.to_string(), "Var k");
/// assert_eq!(StyleExample::VarL.to_string(), "var l");
/// assert_eq!(StyleExample::VarM.to_string(), "VAR M");
/// ```
///
/// ## `#[display(with = "...")]`, `#[from_str(with = "...")]`
///
/// You can customize [`Display`] and [`FromStr`] processing for a field by specifying the values that implements [`DisplayFormat`] and [`FromStrFormat`].
///
/// If [`Display`] of the field is used when this attribute is not specified, the value specified for the attribute must implement [`DisplayFormat`].
///
/// If [`FromStr`] of the field is used when this attribute is not specified, the value specified for the attribute must implement [`FromStrFormat`].
///
/// See [`DisplayFormat`] and [`FromStrFormat`] for details.
///
/// ## `#[display(bound(...))]`, `#[from_str(bound(...))]`
///
/// By default, the type of field used in the format is added to the trait bound.
///
/// In Rust prior to 1.59, this behavior causes a compile error if you use fields of non public type in public struct.
///
/// ```rust
/// #![deny(private_in_public)]
/// use parse_display::Display;
///
/// // private type `Inner<T>` in public interface (error E0446)
/// #[derive(Display)]
/// pub struct Outer<T>(Inner<T>);
///
/// #[derive(Display)]
/// struct Inner<T>(T);
/// ```
///
/// By writing `#[display(bound(...))]`, you can override the default behavior.
///
/// ### Specify trait bound type
///
/// By specifying the type, you can specify the type that need to implement `Display` and `FromStr`.
///
/// ```rust
/// use parse_display::{Display, FromStr};
///
/// #[derive(Display, FromStr, PartialEq, Debug)]
/// #[display(bound(T))]
/// pub struct Outer<T>(Inner<T>);
///
/// #[derive(Display, FromStr, PartialEq, Debug)]
/// struct Inner<T>(T);
///
/// assert_eq!(Outer(Inner(10)).to_string(), "10");
/// assert_eq!("10".parse(), Ok(Outer(Inner(10))));
/// ```
///
/// ### Specify where predicate
///
/// You can also specify the where predicate.
///
/// ```rust
/// use parse_display::Display;
///
/// #[derive(Display)]
/// #[display(bound(T : std::fmt::Debug))]
/// pub struct Outer<T>(Inner<T>);
///
/// #[derive(Display)]
/// #[display("{0:?}")]
/// struct Inner<T>(T);
///
/// assert_eq!(Outer(Inner(10)).to_string(), "10");
/// ```
///
/// ### No trait bounds
///
/// You can also remove all trait bounds.
///
/// ```rust
/// use parse_display::Display;
///
/// #[derive(Display)]
/// #[display(bound())]
/// pub struct Outer<T>(Inner<T>);
///
/// #[derive(Display)]
/// #[display("ABC")]
/// struct Inner<T>(T);
///
/// assert_eq!(Outer(Inner(10)).to_string(), "ABC");
/// ```
///
/// ### Default trait bounds
///
/// `..` means default (automatically generated) trait bounds.
///
/// The following example specifies `T1` as a trait bound in addition to the default trait bound `T2`.
///
/// ```rust
/// use parse_display::Display;
///
/// pub struct Inner<T>(T);
///
/// #[derive(Display)]
/// #[display("{0.0}, {1}", bound(T1, ..))]
/// pub struct Outer<T1, T2>(Inner<T1>, T2);
///
/// assert_eq!(Outer(Inner(10), 20).to_string(), "10, 20");
/// ```
///
/// You can use a different trait bound for `Display` and `FromStr` by specifying both `#[display(bound(...))]` and `#[from_str(bound(...))]`.
///
/// ```rust
/// use parse_display::*;
/// use std::{fmt::Display, str::FromStr};
///
/// #[derive(Display, FromStr, PartialEq, Debug)]
/// #[display(bound("T : Display"))]
/// #[from_str(bound("T : FromStr"))]
/// pub struct Outer<T>(Inner<T>);
///
/// #[derive(Display, FromStr, PartialEq, Debug)]
/// struct Inner<T>(T);
///
/// assert_eq!(Outer(Inner(10)).to_string(), "10");
/// assert_eq!("10".parse(), Ok(Outer(Inner(10))));
/// ```
///
/// ## `#[display(crate = ...)]`
///
/// Specify a path to the `parse-display` crate instance.
///
/// Used when `::parse_display` is not an instance of `parse-display`, such as when a macro is re-exported or used from another macro.
///
/// ## `#[display(dump)]`, `#[from_str(dump)]`
///
/// Outputs the generated code as a compile error.
///
/// ## `#[from_str(regex = "...")]`
///
/// Specify the format of the string to be input with `FromStr`.
/// `#[display("...")]` is ignored, when this attribute is specified.
///
/// ### Capture name
///
/// The capture name corresponds to the field name.
///
/// ```rust
/// use parse_display::FromStr;
///
/// #[derive(FromStr, PartialEq, Debug)]
/// #[from_str(regex = "(?<a>[0-9]+)__(?<b>[0-9]+)")]
/// struct MyStruct {
///   a: u8,
///   b: u8,
/// }
///
/// assert_eq!("10__20".parse(), Ok(MyStruct { a:10, b:20 }));
/// ```
///
/// ### Field regex
///
/// Set `#[display("...")]` to struct and set `#[from_str(regex = "...")]` to field, regex is used in the position where field name is specified in `#[display("...")]`.
///
/// ```rust
/// use parse_display::FromStr;
///
/// #[derive(FromStr, PartialEq, Debug)]
/// #[display("{a}__{b}")]
/// struct MyStruct {
///   #[from_str(regex = "[0-9]+")]
///   a: u8,
///
///   #[from_str(regex = "[0-9]+")]
///   b: u8,
/// }
/// assert_eq!("10__20".parse(), Ok(MyStruct { a:10, b:20 }));
/// ```
///
/// If `#[from_str(regex = "...")]` is not set to field ,
/// it operates in the same way as when `#[from_str(regex = "(?s:.*?)")]` is set.
///
/// ```rust
/// use parse_display::FromStr;
///
/// #[derive(FromStr, PartialEq, Debug)]
/// #[display("{a}{b}")]
/// struct MyStruct {
///   a: String,
///   b: String,
/// }
/// assert_eq!("abcdef".parse(), Ok(MyStruct { a:"".into(), b:"abcdef".into() }));
/// ```
///
/// ### Variant name
///
/// In the regex specified for enum or variant, empty name capture means variant name.
///
/// ```rust
/// use parse_display::FromStr;
///
/// #[derive(FromStr, PartialEq, Debug)]
/// #[from_str(regex = "___(?<>)___")]
/// enum MyEnum {
///   VarA,
///
///   #[from_str(regex = "xxx(?<>)xxx")]
///   VarB,
/// }
/// assert_eq!("___VarA___".parse(), Ok(MyEnum::VarA));
/// assert_eq!("xxxVarBxxx".parse(), Ok(MyEnum::VarB));
/// ```
///
/// ### Regex nested field
///
/// You can use nested field in regex.
///
/// ```rust
/// use parse_display::FromStr;
///
/// #[derive(PartialEq, Debug, Default)]
/// struct X {
///     a: u32,
/// }
///
/// #[derive(FromStr, PartialEq, Debug)]
/// #[from_str(regex = "___(?<x.a>[0-9]+)")]
/// struct Y {
///     #[from_str(default)]
///     x: X,
/// }
/// assert_eq!("___10".parse(), Ok(Y { x: X { a: 10 } }));
/// ```
///
/// When using nested field, you need to use [`#[from_str(default)]`](#from_strdefault).
///
/// ## `#[from_str(new = ...)]`
///
/// If `#[from_str(new = ...)]` is specified, the value will be initialized with the specified expression instead of the constructor.
///
/// The expression must return a value that implement [`IntoResult`] (e.g. `Self`, `Option<Self>`, `Result<Self, E>`).
///
/// In the expression, you can use a variable with the same name as the field name.
///
/// ```rust
/// use parse_display::FromStr;
/// #[derive(FromStr, Debug, PartialEq)]
/// #[from_str(new = Self::new(value))]
/// struct MyNonZeroUSize {
///     value: usize,
/// }
///
/// impl MyNonZeroUSize {
///     fn new(value: usize) -> Option<Self> {
///         if value == 0 {
///             None
///         } else {
///             Some(Self { value })
///         }
///     }
/// }
///
/// assert_eq!("1".parse(), Ok(MyNonZeroUSize { value: 1 }));
/// assert_eq!("0".parse::<MyNonZeroUSize>().is_err(), true);
/// ```
///
/// In tuple struct, variables are named with a leading underscore and their index. (e.g. `_0`, `_1`).
///
/// ```rust
/// use parse_display::FromStr;
/// #[derive(FromStr, Debug, PartialEq)]
/// #[from_str(new = Self::new(_0))]
/// struct MyNonZeroUSize(usize);
///
/// impl MyNonZeroUSize {
///     fn new(value: usize) -> Option<Self> {
///         if value == 0 {
///             None
///         } else {
///             Some(Self(value))
///         }
///     }
/// }
///
/// assert_eq!("1".parse(), Ok(MyNonZeroUSize(1)));
/// assert_eq!("0".parse::<MyNonZeroUSize>().is_err(), true);
/// ```
///
/// ## `#[from_str(ignore)]`
///
/// Specifying this attribute for a variant will not generate `FromStr` implementation for that variant.
///
/// ```rust
/// use parse_display::FromStr;
///
/// #[derive(Debug, Eq, PartialEq)]
/// struct CanNotFromStr;
///
/// #[derive(FromStr, Debug, Eq, PartialEq)]
/// #[allow(dead_code)]
/// enum HasIgnore {
///     #[from_str(ignore)]
///     A(CanNotFromStr),
///     #[display("{0}")]
///     B(u32),
/// }
///
/// assert_eq!("1".parse(), Ok(HasIgnore::B(1)));
/// ```
///
/// ## `#[from_str(default)]`
///
/// If this attribute is specified, the default value is used for fields not included in the input.
///
/// If an attribute is specified for struct, the struct's default value is used.
///
/// ```rust
/// use parse_display::FromStr;
///
/// #[derive(FromStr, PartialEq, Debug)]
/// #[display("{b}")]
/// #[from_str(default)]
/// struct MyStruct {
///   a: u32,
///   b: u32,
/// }
///
/// impl Default for MyStruct {
///   fn default() -> Self {
///     Self { a:99, b:99 }
///   }
/// }
/// assert_eq!("10".parse(), Ok(MyStruct { a:99, b:10 }));
/// ```
///
/// If an attribute is specified for field, the field type's default value is used.
///
/// ```rust
/// use parse_display::FromStr;
///
/// #[derive(FromStr, PartialEq, Debug)]
/// #[display("{b}")]
/// struct MyStruct {
///   #[from_str(default)]
///   a: u32,
///   b: u32,
/// }
///
/// impl Default for MyStruct {
///   fn default() -> Self {
///     Self { a:99, b:99 }
///   }
/// }
/// assert_eq!("10".parse(), Ok(MyStruct { a:0, b:10 }));
/// ```
///
/// ## `#[from_str(default_fields(...))]`
///
/// You can use `#[from_str(default_fields(...))]` if you want to set default values for the same-named fields of multiple variants.
///
/// ```rust
/// use parse_display::FromStr;
///
/// #[derive(FromStr, PartialEq, Debug)]
/// #[display("{}-{a}")]
/// #[from_str(default_fields("b", "c"))]
/// enum MyEnum {
///   VarA { a:u8, b:u8, c:u8 },
///   VarB { a:u8, b:u8, c:u8 },
/// }
///
/// assert_eq!("VarA-10".parse(), Ok(MyEnum::VarA { a:10, b:0, c:0 }));
/// assert_eq!("VarB-10".parse(), Ok(MyEnum::VarB { a:10, b:0, c:0 }));
/// ```
// #[include_doc("display.md", end)]
pub use parse_display_derive::Display;

/// Derive [`FromStr`](std::str::FromStr).
///
/// `#[derive(Display)]` and `#[derive(FromStr)]` use common helper attributes.
///
/// See [`#[derive(Display)]`](derive@Display) for details.
pub use parse_display_derive::FromStr;

#[derive(Debug, Eq, PartialEq)]
pub struct ParseError(&'static str);
impl ParseError {
    pub fn with_message(message: &'static str) -> Self {
        Self(message)
    }
    pub fn new() -> Self {
        Self::with_message("parse failed.")
    }
}
impl Default for ParseError {
    fn default() -> Self {
        Self::new()
    }
}

impl Display for ParseError {
    fn fmt(&self, f: &mut Formatter) -> Result {
        write!(f, "{}", self.0)
    }
}
#[cfg(feature = "std")]
impl std::error::Error for ParseError {
    fn description(&self) -> &str {
        self.0
    }
}

pub trait IntoResult<T> {
    type Err;
    fn into_result(self) -> core::result::Result<T, Self::Err>;
}

impl<T> IntoResult<T> for T {
    type Err = Infallible;
    fn into_result(self) -> core::result::Result<T, Self::Err> {
        Ok(self)
    }
}

impl<T> IntoResult<T> for Option<T> {
    type Err = ParseError;
    fn into_result(self) -> core::result::Result<T, Self::Err> {
        self.ok_or_else(ParseError::new)
    }
}

impl<T, E> IntoResult<T> for core::result::Result<T, E> {
    type Err = E;
    fn into_result(self) -> core::result::Result<T, E> {
        self
    }
}

/// A trait to customize the formatting method.
///
/// You can customize the field format by specifying a value that implements this trait with `#[display(with = ...)]`.
///
/// The expression specified for `#[display(with = ...)]` must be lightweight because the expression specified for `#[display(with = ...)]` is evaluated each time the field is formatted.
pub trait DisplayFormat<T: ?Sized> {
    /// Format the specified value.
    fn write(&self, f: &mut Formatter, value: &T) -> Result;
}

/// A trait to customize the parsing method.
pub trait FromStrFormat<T> {
    type Err;
    fn parse(&self, s: &str) -> core::result::Result<T, Self::Err>;

    #[cfg(feature = "std")]
    fn regex(&self) -> Option<String> {
        None
    }
}