flatbuffers 0.2.0

Memory Efficient Serialization Library. Flatbuffers runtime for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Automatically generated, do not modify
//!
//! Flatbuffer definitions for the Example namespace.
mod color;
mod any;
pub mod test;
pub mod testsimpletablewithenum;
pub mod vec3;
pub mod stat;
pub mod monster;

pub use self::color::*;
pub use self::any::*;
pub use self::test::{Test, build_test};
pub use self::testsimpletablewithenum::TestSimpleTableWithEnum;
pub use self::vec3::{Vec3, build_vec3};
pub use self::stat::Stat;
pub use self::monster::Monster;