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
I want to add builders to all types generated by prost-build.
All fields are optional, but Prost will generate a Vec instead of an Option<Vec>.
So it would be useful to do #[builder(on(Vec, default))], so those fields are optional too.
I want to add builders to all types generated by
prost-build.All fields are optional, but Prost will generate a
Vecinstead of anOption<Vec>.So it would be useful to do
#[builder(on(Vec, default))], so those fields are optional too.