Language: Rust
OS: Ubuntu 16.04
GCC: 5.4.0
Because flatbuffers files are intended for use across multiple languages, there is no guarantee that the generated code will use Rust style snake case etc, leading to compiler warnings.
It would be good to have the option of either generating idiomatic Rust code, or generating these directives to disable the warnings:
#![allow(non_snake_case)]
#![allow(non_camel_case_types)]