We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently repeated fields of message type are generated as RepeatedField<Message>.
RepeatedField<Message>
That helps with high performance code: allocated memory for one message can be reused for next message, but practically people rarely reuse messages.
Rust-protobuf needs an option to generate repeated fields as Vec<Message>, which could be turned on by default later.
Vec<Message>
The text was updated successfully, but these errors were encountered:
Implemented in 87c156d.
Sorry, something went wrong.
No branches or pull requests
Currently repeated fields of message type are generated as
RepeatedField<Message>
.That helps with high performance code: allocated memory for one message can be reused for next message, but practically people rarely reuse messages.
Rust-protobuf needs an option to generate repeated fields as
Vec<Message>
, which could be turned on by default later.The text was updated successfully, but these errors were encountered: