You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use darling::FromAttributes;#[derive(darling::FromAttributes)]#[darling(attributes(builder, forward_attrs))]structParams{default:Option<syn::Expr>,attrs:Vec<syn::Attributes>,}
The code generated by darling doesn't compile in this case because it doesn't initialize the attrs field.
The text was updated successfully, but these errors were encountered:
Reproduction
The code generated by
darling
doesn't compile in this case because it doesn't initialize theattrs
field.The text was updated successfully, but these errors were encountered: