2018-09-03 00:05:50 +00:00
|
|
|
// automatically generated by the FlatBuffers compiler, do not modify
|
|
|
|
|
|
|
|
|
2019-01-24 21:25:56 +00:00
|
|
|
|
[rust] Add use declarations to Rust-generated bindings for imported FB definitions (#5645)
* Bugfix for Rust generation of union fields named with language keywords
Looking at ParseField, it appears that in the case of unions, an extra field with a `UnionTypeFieldSuffix` is added to the type definition, however, if the name of this field is a keyword in the target language, it isn't escaped.
For example, if generating code for rust for a union field named `type`, flatc will generate a (non-keyword escaped) field named `type_type` for this hidden union field, and one (keyword escaped) called `type_` for the actual union contents.
When the union accessors are generated, they refer to this `type_type` field, but they will escape it mistakenly, generating code like this:
```
#[inline]
#[allow(non_snake_case)]
pub fn type__as_int(&self) -> Option<Int<'a>> {
if self.type__type() == Type::Int {
self.type_().map(|u| Int::init_from_table(u))
} else {
None
}
}
```
Which will fail to build because the field is called `self.type_type()`, not `self.type__type()`.
* [Rust] Add crate-relative use statements for FBS includes.
At present if a flatbuffer description includes a reference to a type in
another file, the generated Rust code needs to be hand-modified to add
the appropriate `use` statements.
This assumes that the dependencies are built into the same crate, which
I think is a reasonable assumption?
* Revert "[Rust] Add crate-relative use statements for FBS includes."
This reverts commit d554d79fecf5afd6da6fb993b30b4cd523a5889a.
* Add updated generated test files.
* Fixing Rust test harness to handle new includes.
Test binaries need to add references to generated code that's
transitively included.
This also has the knock-on in that this code (which is referenced by
include directives directly in the flatbuffer schema files) also needs
to be generated, hence the changes to generate_code.sh.
* Test harnesses expect test data to be checked in.
Put include_test2 files into the same directory as the include_test2
schema definition.
Update all code generation scripts (forgot the batch file from last
time).
Path updates in Rust test.
* Include updated generated code
* Address comments raised in PR
* Fix failing Rust tests.
* Previous merge clobbered this branch change.
* Add updated imports to benchmarks.
* Clarifying comment per PR request
* Update documentation comments per feedback
* Remove non-Rust generated files for include tests, per feedback from @rw/@aardappel
* Broken code generation batch file
* Fix typo
* Add TODO for tidying up use declaration traversal sometime in the future
* Update test files.
2020-01-19 22:47:28 +00:00
|
|
|
use crate::namespace_test1_generated::*;
|
2019-01-24 21:25:56 +00:00
|
|
|
use std::mem;
|
|
|
|
use std::cmp::Ordering;
|
|
|
|
|
|
|
|
extern crate flatbuffers;
|
|
|
|
use self::flatbuffers::EndianScalar;
|
|
|
|
|
2019-03-09 20:58:27 +00:00
|
|
|
#[allow(unused_imports, dead_code)]
|
2018-09-03 00:05:50 +00:00
|
|
|
pub mod namespace_a {
|
|
|
|
|
[rust] Add use declarations to Rust-generated bindings for imported FB definitions (#5645)
* Bugfix for Rust generation of union fields named with language keywords
Looking at ParseField, it appears that in the case of unions, an extra field with a `UnionTypeFieldSuffix` is added to the type definition, however, if the name of this field is a keyword in the target language, it isn't escaped.
For example, if generating code for rust for a union field named `type`, flatc will generate a (non-keyword escaped) field named `type_type` for this hidden union field, and one (keyword escaped) called `type_` for the actual union contents.
When the union accessors are generated, they refer to this `type_type` field, but they will escape it mistakenly, generating code like this:
```
#[inline]
#[allow(non_snake_case)]
pub fn type__as_int(&self) -> Option<Int<'a>> {
if self.type__type() == Type::Int {
self.type_().map(|u| Int::init_from_table(u))
} else {
None
}
}
```
Which will fail to build because the field is called `self.type_type()`, not `self.type__type()`.
* [Rust] Add crate-relative use statements for FBS includes.
At present if a flatbuffer description includes a reference to a type in
another file, the generated Rust code needs to be hand-modified to add
the appropriate `use` statements.
This assumes that the dependencies are built into the same crate, which
I think is a reasonable assumption?
* Revert "[Rust] Add crate-relative use statements for FBS includes."
This reverts commit d554d79fecf5afd6da6fb993b30b4cd523a5889a.
* Add updated generated test files.
* Fixing Rust test harness to handle new includes.
Test binaries need to add references to generated code that's
transitively included.
This also has the knock-on in that this code (which is referenced by
include directives directly in the flatbuffer schema files) also needs
to be generated, hence the changes to generate_code.sh.
* Test harnesses expect test data to be checked in.
Put include_test2 files into the same directory as the include_test2
schema definition.
Update all code generation scripts (forgot the batch file from last
time).
Path updates in Rust test.
* Include updated generated code
* Address comments raised in PR
* Fix failing Rust tests.
* Previous merge clobbered this branch change.
* Add updated imports to benchmarks.
* Clarifying comment per PR request
* Update documentation comments per feedback
* Remove non-Rust generated files for include tests, per feedback from @rw/@aardappel
* Broken code generation batch file
* Fix typo
* Add TODO for tidying up use declaration traversal sometime in the future
* Update test files.
2020-01-19 22:47:28 +00:00
|
|
|
use crate::namespace_test1_generated::*;
|
2018-09-03 00:05:50 +00:00
|
|
|
use std::mem;
|
|
|
|
use std::cmp::Ordering;
|
|
|
|
|
|
|
|
extern crate flatbuffers;
|
|
|
|
use self::flatbuffers::EndianScalar;
|
|
|
|
|
|
|
|
pub enum TableInFirstNSOffset {}
|
|
|
|
#[derive(Copy, Clone, Debug, PartialEq)]
|
|
|
|
|
|
|
|
pub struct TableInFirstNS<'a> {
|
|
|
|
pub _tab: flatbuffers::Table<'a>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> flatbuffers::Follow<'a> for TableInFirstNS<'a> {
|
|
|
|
type Inner = TableInFirstNS<'a>;
|
|
|
|
#[inline]
|
|
|
|
fn follow(buf: &'a [u8], loc: usize) -> Self::Inner {
|
|
|
|
Self {
|
|
|
|
_tab: flatbuffers::Table { buf: buf, loc: loc },
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> TableInFirstNS<'a> {
|
|
|
|
#[inline]
|
|
|
|
pub fn init_from_table(table: flatbuffers::Table<'a>) -> Self {
|
|
|
|
TableInFirstNS {
|
|
|
|
_tab: table,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#[allow(unused_mut)]
|
|
|
|
pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr>(
|
|
|
|
_fbb: &'mut_bldr mut flatbuffers::FlatBufferBuilder<'bldr>,
|
2018-09-04 21:29:27 +00:00
|
|
|
args: &'args TableInFirstNSArgs<'args>) -> flatbuffers::WIPOffset<TableInFirstNS<'bldr>> {
|
2018-09-03 00:05:50 +00:00
|
|
|
let mut builder = TableInFirstNSBuilder::new(_fbb);
|
|
|
|
if let Some(x) = args.foo_struct { builder.add_foo_struct(x); }
|
|
|
|
if let Some(x) = args.foo_table { builder.add_foo_table(x); }
|
|
|
|
builder.add_foo_enum(args.foo_enum);
|
|
|
|
builder.finish()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub const VT_FOO_TABLE: flatbuffers::VOffsetT = 4;
|
|
|
|
pub const VT_FOO_ENUM: flatbuffers::VOffsetT = 6;
|
|
|
|
pub const VT_FOO_STRUCT: flatbuffers::VOffsetT = 8;
|
|
|
|
|
|
|
|
#[inline]
|
2018-09-29 03:11:05 +00:00
|
|
|
pub fn foo_table(&self) -> Option<namespace_b::TableInNestedNS<'a>> {
|
2018-09-03 00:05:50 +00:00
|
|
|
self._tab.get::<flatbuffers::ForwardsUOffset<namespace_b::TableInNestedNS<'a>>>(TableInFirstNS::VT_FOO_TABLE, None)
|
|
|
|
}
|
|
|
|
#[inline]
|
2018-09-29 03:11:05 +00:00
|
|
|
pub fn foo_enum(&self) -> namespace_b::EnumInNestedNS {
|
2018-09-03 00:05:50 +00:00
|
|
|
self._tab.get::<namespace_b::EnumInNestedNS>(TableInFirstNS::VT_FOO_ENUM, Some(namespace_b::EnumInNestedNS::A)).unwrap()
|
|
|
|
}
|
|
|
|
#[inline]
|
2018-09-29 03:11:05 +00:00
|
|
|
pub fn foo_struct(&self) -> Option<&'a namespace_b::StructInNestedNS> {
|
2018-09-03 00:05:50 +00:00
|
|
|
self._tab.get::<namespace_b::StructInNestedNS>(TableInFirstNS::VT_FOO_STRUCT, None)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-04 21:29:27 +00:00
|
|
|
pub struct TableInFirstNSArgs<'a> {
|
2018-09-03 00:05:50 +00:00
|
|
|
pub foo_table: Option<flatbuffers::WIPOffset<namespace_b::TableInNestedNS<'a >>>,
|
|
|
|
pub foo_enum: namespace_b::EnumInNestedNS,
|
|
|
|
pub foo_struct: Option<&'a namespace_b::StructInNestedNS>,
|
|
|
|
}
|
2018-09-04 21:29:27 +00:00
|
|
|
impl<'a> Default for TableInFirstNSArgs<'a> {
|
2018-09-03 00:05:50 +00:00
|
|
|
#[inline]
|
|
|
|
fn default() -> Self {
|
|
|
|
TableInFirstNSArgs {
|
|
|
|
foo_table: None,
|
|
|
|
foo_enum: namespace_b::EnumInNestedNS::A,
|
|
|
|
foo_struct: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pub struct TableInFirstNSBuilder<'a: 'b, 'b> {
|
|
|
|
fbb_: &'b mut flatbuffers::FlatBufferBuilder<'a>,
|
|
|
|
start_: flatbuffers::WIPOffset<flatbuffers::TableUnfinishedWIPOffset>,
|
|
|
|
}
|
|
|
|
impl<'a: 'b, 'b> TableInFirstNSBuilder<'a, 'b> {
|
|
|
|
#[inline]
|
|
|
|
pub fn add_foo_table(&mut self, foo_table: flatbuffers::WIPOffset<namespace_b::TableInNestedNS<'b >>) {
|
|
|
|
self.fbb_.push_slot_always::<flatbuffers::WIPOffset<namespace_b::TableInNestedNS>>(TableInFirstNS::VT_FOO_TABLE, foo_table);
|
|
|
|
}
|
|
|
|
#[inline]
|
|
|
|
pub fn add_foo_enum(&mut self, foo_enum: namespace_b::EnumInNestedNS) {
|
|
|
|
self.fbb_.push_slot::<namespace_b::EnumInNestedNS>(TableInFirstNS::VT_FOO_ENUM, foo_enum, namespace_b::EnumInNestedNS::A);
|
|
|
|
}
|
|
|
|
#[inline]
|
|
|
|
pub fn add_foo_struct(&mut self, foo_struct: &'b namespace_b::StructInNestedNS) {
|
|
|
|
self.fbb_.push_slot_always::<&namespace_b::StructInNestedNS>(TableInFirstNS::VT_FOO_STRUCT, foo_struct);
|
|
|
|
}
|
|
|
|
#[inline]
|
|
|
|
pub fn new(_fbb: &'b mut flatbuffers::FlatBufferBuilder<'a>) -> TableInFirstNSBuilder<'a, 'b> {
|
|
|
|
let start = _fbb.start_table();
|
|
|
|
TableInFirstNSBuilder {
|
|
|
|
fbb_: _fbb,
|
|
|
|
start_: start,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#[inline]
|
|
|
|
pub fn finish(self) -> flatbuffers::WIPOffset<TableInFirstNS<'a>> {
|
|
|
|
let o = self.fbb_.end_table(self.start_);
|
|
|
|
flatbuffers::WIPOffset::new(o.value())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum SecondTableInAOffset {}
|
|
|
|
#[derive(Copy, Clone, Debug, PartialEq)]
|
|
|
|
|
|
|
|
pub struct SecondTableInA<'a> {
|
|
|
|
pub _tab: flatbuffers::Table<'a>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> flatbuffers::Follow<'a> for SecondTableInA<'a> {
|
|
|
|
type Inner = SecondTableInA<'a>;
|
|
|
|
#[inline]
|
|
|
|
fn follow(buf: &'a [u8], loc: usize) -> Self::Inner {
|
|
|
|
Self {
|
|
|
|
_tab: flatbuffers::Table { buf: buf, loc: loc },
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> SecondTableInA<'a> {
|
|
|
|
#[inline]
|
|
|
|
pub fn init_from_table(table: flatbuffers::Table<'a>) -> Self {
|
|
|
|
SecondTableInA {
|
|
|
|
_tab: table,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#[allow(unused_mut)]
|
|
|
|
pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr>(
|
|
|
|
_fbb: &'mut_bldr mut flatbuffers::FlatBufferBuilder<'bldr>,
|
2018-09-04 21:29:27 +00:00
|
|
|
args: &'args SecondTableInAArgs<'args>) -> flatbuffers::WIPOffset<SecondTableInA<'bldr>> {
|
2018-09-03 00:05:50 +00:00
|
|
|
let mut builder = SecondTableInABuilder::new(_fbb);
|
|
|
|
if let Some(x) = args.refer_to_c { builder.add_refer_to_c(x); }
|
|
|
|
builder.finish()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub const VT_REFER_TO_C: flatbuffers::VOffsetT = 4;
|
|
|
|
|
|
|
|
#[inline]
|
2018-09-29 03:11:05 +00:00
|
|
|
pub fn refer_to_c(&self) -> Option<super::namespace_c::TableInC<'a>> {
|
2018-09-03 00:05:50 +00:00
|
|
|
self._tab.get::<flatbuffers::ForwardsUOffset<super::namespace_c::TableInC<'a>>>(SecondTableInA::VT_REFER_TO_C, None)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-04 21:29:27 +00:00
|
|
|
pub struct SecondTableInAArgs<'a> {
|
2018-09-03 00:05:50 +00:00
|
|
|
pub refer_to_c: Option<flatbuffers::WIPOffset<super::namespace_c::TableInC<'a >>>,
|
|
|
|
}
|
2018-09-04 21:29:27 +00:00
|
|
|
impl<'a> Default for SecondTableInAArgs<'a> {
|
2018-09-03 00:05:50 +00:00
|
|
|
#[inline]
|
|
|
|
fn default() -> Self {
|
|
|
|
SecondTableInAArgs {
|
|
|
|
refer_to_c: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pub struct SecondTableInABuilder<'a: 'b, 'b> {
|
|
|
|
fbb_: &'b mut flatbuffers::FlatBufferBuilder<'a>,
|
|
|
|
start_: flatbuffers::WIPOffset<flatbuffers::TableUnfinishedWIPOffset>,
|
|
|
|
}
|
|
|
|
impl<'a: 'b, 'b> SecondTableInABuilder<'a, 'b> {
|
|
|
|
#[inline]
|
|
|
|
pub fn add_refer_to_c(&mut self, refer_to_c: flatbuffers::WIPOffset<super::namespace_c::TableInC<'b >>) {
|
|
|
|
self.fbb_.push_slot_always::<flatbuffers::WIPOffset<super::namespace_c::TableInC>>(SecondTableInA::VT_REFER_TO_C, refer_to_c);
|
|
|
|
}
|
|
|
|
#[inline]
|
|
|
|
pub fn new(_fbb: &'b mut flatbuffers::FlatBufferBuilder<'a>) -> SecondTableInABuilder<'a, 'b> {
|
|
|
|
let start = _fbb.start_table();
|
|
|
|
SecondTableInABuilder {
|
|
|
|
fbb_: _fbb,
|
|
|
|
start_: start,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#[inline]
|
|
|
|
pub fn finish(self) -> flatbuffers::WIPOffset<SecondTableInA<'a>> {
|
|
|
|
let o = self.fbb_.end_table(self.start_);
|
|
|
|
flatbuffers::WIPOffset::new(o.value())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // pub mod NamespaceA
|
|
|
|
|
2019-03-09 20:58:27 +00:00
|
|
|
#[allow(unused_imports, dead_code)]
|
2018-09-03 00:05:50 +00:00
|
|
|
pub mod namespace_c {
|
|
|
|
|
[rust] Add use declarations to Rust-generated bindings for imported FB definitions (#5645)
* Bugfix for Rust generation of union fields named with language keywords
Looking at ParseField, it appears that in the case of unions, an extra field with a `UnionTypeFieldSuffix` is added to the type definition, however, if the name of this field is a keyword in the target language, it isn't escaped.
For example, if generating code for rust for a union field named `type`, flatc will generate a (non-keyword escaped) field named `type_type` for this hidden union field, and one (keyword escaped) called `type_` for the actual union contents.
When the union accessors are generated, they refer to this `type_type` field, but they will escape it mistakenly, generating code like this:
```
#[inline]
#[allow(non_snake_case)]
pub fn type__as_int(&self) -> Option<Int<'a>> {
if self.type__type() == Type::Int {
self.type_().map(|u| Int::init_from_table(u))
} else {
None
}
}
```
Which will fail to build because the field is called `self.type_type()`, not `self.type__type()`.
* [Rust] Add crate-relative use statements for FBS includes.
At present if a flatbuffer description includes a reference to a type in
another file, the generated Rust code needs to be hand-modified to add
the appropriate `use` statements.
This assumes that the dependencies are built into the same crate, which
I think is a reasonable assumption?
* Revert "[Rust] Add crate-relative use statements for FBS includes."
This reverts commit d554d79fecf5afd6da6fb993b30b4cd523a5889a.
* Add updated generated test files.
* Fixing Rust test harness to handle new includes.
Test binaries need to add references to generated code that's
transitively included.
This also has the knock-on in that this code (which is referenced by
include directives directly in the flatbuffer schema files) also needs
to be generated, hence the changes to generate_code.sh.
* Test harnesses expect test data to be checked in.
Put include_test2 files into the same directory as the include_test2
schema definition.
Update all code generation scripts (forgot the batch file from last
time).
Path updates in Rust test.
* Include updated generated code
* Address comments raised in PR
* Fix failing Rust tests.
* Previous merge clobbered this branch change.
* Add updated imports to benchmarks.
* Clarifying comment per PR request
* Update documentation comments per feedback
* Remove non-Rust generated files for include tests, per feedback from @rw/@aardappel
* Broken code generation batch file
* Fix typo
* Add TODO for tidying up use declaration traversal sometime in the future
* Update test files.
2020-01-19 22:47:28 +00:00
|
|
|
use crate::namespace_test1_generated::*;
|
2018-09-03 00:05:50 +00:00
|
|
|
use std::mem;
|
|
|
|
use std::cmp::Ordering;
|
|
|
|
|
|
|
|
extern crate flatbuffers;
|
|
|
|
use self::flatbuffers::EndianScalar;
|
|
|
|
|
|
|
|
pub enum TableInCOffset {}
|
|
|
|
#[derive(Copy, Clone, Debug, PartialEq)]
|
|
|
|
|
|
|
|
pub struct TableInC<'a> {
|
|
|
|
pub _tab: flatbuffers::Table<'a>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> flatbuffers::Follow<'a> for TableInC<'a> {
|
|
|
|
type Inner = TableInC<'a>;
|
|
|
|
#[inline]
|
|
|
|
fn follow(buf: &'a [u8], loc: usize) -> Self::Inner {
|
|
|
|
Self {
|
|
|
|
_tab: flatbuffers::Table { buf: buf, loc: loc },
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> TableInC<'a> {
|
|
|
|
#[inline]
|
|
|
|
pub fn init_from_table(table: flatbuffers::Table<'a>) -> Self {
|
|
|
|
TableInC {
|
|
|
|
_tab: table,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#[allow(unused_mut)]
|
|
|
|
pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr>(
|
|
|
|
_fbb: &'mut_bldr mut flatbuffers::FlatBufferBuilder<'bldr>,
|
2018-09-04 21:29:27 +00:00
|
|
|
args: &'args TableInCArgs<'args>) -> flatbuffers::WIPOffset<TableInC<'bldr>> {
|
2018-09-03 00:05:50 +00:00
|
|
|
let mut builder = TableInCBuilder::new(_fbb);
|
|
|
|
if let Some(x) = args.refer_to_a2 { builder.add_refer_to_a2(x); }
|
|
|
|
if let Some(x) = args.refer_to_a1 { builder.add_refer_to_a1(x); }
|
|
|
|
builder.finish()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub const VT_REFER_TO_A1: flatbuffers::VOffsetT = 4;
|
|
|
|
pub const VT_REFER_TO_A2: flatbuffers::VOffsetT = 6;
|
|
|
|
|
|
|
|
#[inline]
|
2018-09-29 03:11:05 +00:00
|
|
|
pub fn refer_to_a1(&self) -> Option<super::namespace_a::TableInFirstNS<'a>> {
|
2018-09-03 00:05:50 +00:00
|
|
|
self._tab.get::<flatbuffers::ForwardsUOffset<super::namespace_a::TableInFirstNS<'a>>>(TableInC::VT_REFER_TO_A1, None)
|
|
|
|
}
|
|
|
|
#[inline]
|
2018-09-29 03:11:05 +00:00
|
|
|
pub fn refer_to_a2(&self) -> Option<super::namespace_a::SecondTableInA<'a>> {
|
2018-09-03 00:05:50 +00:00
|
|
|
self._tab.get::<flatbuffers::ForwardsUOffset<super::namespace_a::SecondTableInA<'a>>>(TableInC::VT_REFER_TO_A2, None)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-04 21:29:27 +00:00
|
|
|
pub struct TableInCArgs<'a> {
|
2018-09-03 00:05:50 +00:00
|
|
|
pub refer_to_a1: Option<flatbuffers::WIPOffset<super::namespace_a::TableInFirstNS<'a >>>,
|
|
|
|
pub refer_to_a2: Option<flatbuffers::WIPOffset<super::namespace_a::SecondTableInA<'a >>>,
|
|
|
|
}
|
2018-09-04 21:29:27 +00:00
|
|
|
impl<'a> Default for TableInCArgs<'a> {
|
2018-09-03 00:05:50 +00:00
|
|
|
#[inline]
|
|
|
|
fn default() -> Self {
|
|
|
|
TableInCArgs {
|
|
|
|
refer_to_a1: None,
|
|
|
|
refer_to_a2: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pub struct TableInCBuilder<'a: 'b, 'b> {
|
|
|
|
fbb_: &'b mut flatbuffers::FlatBufferBuilder<'a>,
|
|
|
|
start_: flatbuffers::WIPOffset<flatbuffers::TableUnfinishedWIPOffset>,
|
|
|
|
}
|
|
|
|
impl<'a: 'b, 'b> TableInCBuilder<'a, 'b> {
|
|
|
|
#[inline]
|
|
|
|
pub fn add_refer_to_a1(&mut self, refer_to_a1: flatbuffers::WIPOffset<super::namespace_a::TableInFirstNS<'b >>) {
|
|
|
|
self.fbb_.push_slot_always::<flatbuffers::WIPOffset<super::namespace_a::TableInFirstNS>>(TableInC::VT_REFER_TO_A1, refer_to_a1);
|
|
|
|
}
|
|
|
|
#[inline]
|
|
|
|
pub fn add_refer_to_a2(&mut self, refer_to_a2: flatbuffers::WIPOffset<super::namespace_a::SecondTableInA<'b >>) {
|
|
|
|
self.fbb_.push_slot_always::<flatbuffers::WIPOffset<super::namespace_a::SecondTableInA>>(TableInC::VT_REFER_TO_A2, refer_to_a2);
|
|
|
|
}
|
|
|
|
#[inline]
|
|
|
|
pub fn new(_fbb: &'b mut flatbuffers::FlatBufferBuilder<'a>) -> TableInCBuilder<'a, 'b> {
|
|
|
|
let start = _fbb.start_table();
|
|
|
|
TableInCBuilder {
|
|
|
|
fbb_: _fbb,
|
|
|
|
start_: start,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#[inline]
|
|
|
|
pub fn finish(self) -> flatbuffers::WIPOffset<TableInC<'a>> {
|
|
|
|
let o = self.fbb_.end_table(self.start_);
|
|
|
|
flatbuffers::WIPOffset::new(o.value())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // pub mod NamespaceC
|
|
|
|
|