Lines Matching refs:FlatBuffers
6 Before diving into the FlatBuffers usage in Rust, it should be noted that
8 to general FlatBuffers usage in all of the supported languages (including Rust).
9 This page is designed to cover the nuances of FlatBuffers usage, specific to
14 This page assumes you have written a FlatBuffers schema and compiled it
26 ## FlatBuffers Rust library code location
28 The code for the FlatBuffers Rust library can be found at
30 [FlatBuffers GitHub page](https://github.com/google/flatbuffers/tree/master/rust).
32 ## Testing the FlatBuffers Rust library
48 ## Using the FlatBuffers Rust library
51 example of how to use FlatBuffers in Rust.*
53 FlatBuffers supports both reading and writing FlatBuffers in Rust.
55 To use FlatBuffers in your code, first generate the Rust modules from your
56 schema with the `--rust` option to `flatc`. Then you can import both FlatBuffers
57 and the generated code to read or write FlatBuffers.
169 * [flatc-rust](https://github.com/frol/flatc-rust) - FlatBuffers compiler