Snap for 11180250 from da59a6748d27ffc0824d0f4cf68d2a89ad2b55a3 to 24Q1-release

Change-Id: I3676d75b8baf0907a7d725a64b9465516dfc9fa2
tree: 5b8f6d934520f205ebf8aa8afe699e30fa8b4b1c
  1. 2.27.1/
  2. benches/
  3. out/
  4. patches/
  5. src/
  6. .cargo_vcs_info.json
  7. Android.bp
  8. build.rs
  9. Cargo.toml
  10. Cargo.toml.orig
  11. cargo2rulesmk.json
  12. cargo_1.out
  13. cargo_embargo.json
  14. LICENSE.txt
  15. METADATA
  16. MODULE_LICENSE_MIT
  17. OWNERS
  18. README.md
  19. regenerate.sh
  20. rules.mk
  21. TEST_MAPPING
README.md

Library to read and write protocol buffers data

Features

This crate has one feature, which is with-bytes.

with-bytes enables protobuf crate support for bytes crate: when parsing bytes or strings from bytes::Bytes, protobuf will be able to reference the input instead of allocating subarrays.

Note, codegen also need to be instructed to generate Bytes or Chars for bytes or string protobuf types instead of default Vec<u8> or String, just enabling option on this crate is not enough.

See Customize struct in protobuf-codegen crate.

Accompanying crates