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
Note that there are few functions implemented in #236, version is not released yet.
If more functions need to be added, PR is welcome.
Also, rust-protobuf codegen should have an option to generate fields of Vec type fields instead of RepeatedField. RepeatedField is an optimization, and it's not always needed.
Repeated is just a thin wrapper over vec. Instead of exposing just method, should implement from.
This way people can call
into()
and not worry about importing the crate just to callfrom_vec
Since it can’t fail this seems even more appealing.
Usecase: I only use protobuf as client. Importing protobuf crate just to call from_vec seems unnecessary.
The text was updated successfully, but these errors were encountered: