impl_standard_builder: Test the Deserialize impl and have it generate ::builder
1 unresolved thread
1 unresolved thread
This detects bugs like fixed in !502 (merged), and replaces quite a lot of handwritten code.
Merge request reports
Activity
assigned to @Diziet
requested review from @nickm
140 // 141 // The implementation munches fake "trait bounds" off the RHS. 142 // We're going to add at least one more option. 108 143 #[macro_export] 109 macro_rules! impl_standard_builder { { 110 $Config:ty 111 } => { 112 $crate::paste!{ 144 macro_rules! impl_standard_builder { 145 { 146 $Config:ty $(: $($options:tt)* )? 147 } => { $crate::impl_standard_builder!{ 148 @ ( try_deserialize ) $Config : $( $( $options )* )? 149 } }; 150 { 151 @ ( $($try_deserialize:ident)? ) $Config:ty : $(+)? !Deserialize $( $options:tt )* added 1 commit
- 8f724ad7 - impl_standard_builder: Better comments explaining the parser
mentioned in commit f482a5bd
Please register or sign in to reply