Skip to content

Commit 8067cd4

Browse files
committed
Regenerate code
1 parent 83df0dd commit 8067cd4

34 files changed

+136
-0
lines changed

samples/rust_generated/my_game/sample/monster_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for Monster<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for Monster<'b> {
28+
type Inner = Monster<'a>;
29+
}
30+
2731
impl<'a> Monster<'a> {
2832
pub const VT_POS: flatbuffers::VOffsetT = 4;
2933
pub const VT_MANA: flatbuffers::VOffsetT = 6;

samples/rust_generated/my_game/sample/weapon_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for Weapon<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for Weapon<'b> {
28+
type Inner = Weapon<'a>;
29+
}
30+
2731
impl<'a> Weapon<'a> {
2832
pub const VT_NAME: flatbuffers::VOffsetT = 4;
2933
pub const VT_DAMAGE: flatbuffers::VOffsetT = 6;

tests/arrays_test/my_game/example/array_table_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for ArrayTable<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for ArrayTable<'b> {
28+
type Inner = ArrayTable<'a>;
29+
}
30+
2731
impl<'a> ArrayTable<'a> {
2832
pub const VT_A: flatbuffers::VOffsetT = 4;
2933

tests/include_test1/my_game/other_name_space/table_b_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for TableB<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for TableB<'b> {
28+
type Inner = TableB<'a>;
29+
}
30+
2731
impl<'a> TableB<'a> {
2832
pub const VT_A: flatbuffers::VOffsetT = 4;
2933

tests/include_test1/table_a_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for TableA<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for TableA<'b> {
28+
type Inner = TableA<'a>;
29+
}
30+
2731
impl<'a> TableA<'a> {
2832
pub const VT_B: flatbuffers::VOffsetT = 4;
2933

tests/include_test2/my_game/other_name_space/table_b_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for TableB<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for TableB<'b> {
28+
type Inner = TableB<'a>;
29+
}
30+
2731
impl<'a> TableB<'a> {
2832
pub const VT_A: flatbuffers::VOffsetT = 4;
2933

tests/include_test2/table_a_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for TableA<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for TableA<'b> {
28+
type Inner = TableA<'a>;
29+
}
30+
2731
impl<'a> TableA<'a> {
2832
pub const VT_B: flatbuffers::VOffsetT = 4;
2933

tests/keyword_test/keyword_test/keywords_in_table_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for KeywordsInTable<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for KeywordsInTable<'b> {
28+
type Inner = KeywordsInTable<'a>;
29+
}
30+
2731
impl<'a> KeywordsInTable<'a> {
2832
pub const VT_IS: flatbuffers::VOffsetT = 4;
2933
pub const VT_PRIVATE: flatbuffers::VOffsetT = 6;

tests/monster_test/my_game/example/monster_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ impl<'a> flatbuffers::Follow<'a> for Monster<'a> {
2525
}
2626
}
2727

28+
impl<'a, 'b> flatbuffers::FollowWith<'a> for Monster<'b> {
29+
type Inner = Monster<'a>;
30+
}
31+
2832
impl<'a> Monster<'a> {
2933
pub const VT_POS: flatbuffers::VOffsetT = 4;
3034
pub const VT_MANA: flatbuffers::VOffsetT = 6;

tests/monster_test/my_game/example/referrable_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for Referrable<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for Referrable<'b> {
28+
type Inner = Referrable<'a>;
29+
}
30+
2731
impl<'a> Referrable<'a> {
2832
pub const VT_ID: flatbuffers::VOffsetT = 4;
2933

tests/monster_test/my_game/example/stat_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for Stat<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for Stat<'b> {
28+
type Inner = Stat<'a>;
29+
}
30+
2731
impl<'a> Stat<'a> {
2832
pub const VT_ID: flatbuffers::VOffsetT = 4;
2933
pub const VT_VAL: flatbuffers::VOffsetT = 6;

tests/monster_test/my_game/example/test_simple_table_with_enum_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for TestSimpleTableWithEnum<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for TestSimpleTableWithEnum<'b> {
28+
type Inner = TestSimpleTableWithEnum<'a>;
29+
}
30+
2731
impl<'a> TestSimpleTableWithEnum<'a> {
2832
pub const VT_COLOR: flatbuffers::VOffsetT = 4;
2933

tests/monster_test/my_game/example/type_aliases_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for TypeAliases<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for TypeAliases<'b> {
28+
type Inner = TypeAliases<'a>;
29+
}
30+
2731
impl<'a> TypeAliases<'a> {
2832
pub const VT_I8_: flatbuffers::VOffsetT = 4;
2933
pub const VT_U8_: flatbuffers::VOffsetT = 6;

tests/monster_test/my_game/example_2/monster_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for Monster<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for Monster<'b> {
28+
type Inner = Monster<'a>;
29+
}
30+
2731
impl<'a> Monster<'a> {
2832

2933
pub const fn get_fully_qualified_name() -> &'static str {

tests/monster_test/my_game/in_parent_namespace_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for InParentNamespace<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for InParentNamespace<'b> {
28+
type Inner = InParentNamespace<'a>;
29+
}
30+
2731
impl<'a> InParentNamespace<'a> {
2832

2933
pub const fn get_fully_qualified_name() -> &'static str {

tests/monster_test/my_game/other_name_space/table_b_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for TableB<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for TableB<'b> {
28+
type Inner = TableB<'a>;
29+
}
30+
2731
impl<'a> TableB<'a> {
2832
pub const VT_A: flatbuffers::VOffsetT = 4;
2933

tests/monster_test/table_a_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for TableA<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for TableA<'b> {
28+
type Inner = TableA<'a>;
29+
}
30+
2731
impl<'a> TableA<'a> {
2832
pub const VT_B: flatbuffers::VOffsetT = 4;
2933

tests/monster_test_serialize/my_game/example/monster_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ impl<'a> flatbuffers::Follow<'a> for Monster<'a> {
2727
}
2828
}
2929

30+
impl<'a, 'b> flatbuffers::FollowWith<'a> for Monster<'b> {
31+
type Inner = Monster<'a>;
32+
}
33+
3034
impl<'a> Monster<'a> {
3135
pub const VT_POS: flatbuffers::VOffsetT = 4;
3236
pub const VT_MANA: flatbuffers::VOffsetT = 6;

tests/monster_test_serialize/my_game/example/referrable_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ impl<'a> flatbuffers::Follow<'a> for Referrable<'a> {
2626
}
2727
}
2828

29+
impl<'a, 'b> flatbuffers::FollowWith<'a> for Referrable<'b> {
30+
type Inner = Referrable<'a>;
31+
}
32+
2933
impl<'a> Referrable<'a> {
3034
pub const VT_ID: flatbuffers::VOffsetT = 4;
3135

tests/monster_test_serialize/my_game/example/stat_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ impl<'a> flatbuffers::Follow<'a> for Stat<'a> {
2626
}
2727
}
2828

29+
impl<'a, 'b> flatbuffers::FollowWith<'a> for Stat<'b> {
30+
type Inner = Stat<'a>;
31+
}
32+
2933
impl<'a> Stat<'a> {
3034
pub const VT_ID: flatbuffers::VOffsetT = 4;
3135
pub const VT_VAL: flatbuffers::VOffsetT = 6;

tests/monster_test_serialize/my_game/example/test_simple_table_with_enum_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ impl<'a> flatbuffers::Follow<'a> for TestSimpleTableWithEnum<'a> {
2626
}
2727
}
2828

29+
impl<'a, 'b> flatbuffers::FollowWith<'a> for TestSimpleTableWithEnum<'b> {
30+
type Inner = TestSimpleTableWithEnum<'a>;
31+
}
32+
2933
impl<'a> TestSimpleTableWithEnum<'a> {
3034
pub const VT_COLOR: flatbuffers::VOffsetT = 4;
3135

tests/monster_test_serialize/my_game/example/type_aliases_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ impl<'a> flatbuffers::Follow<'a> for TypeAliases<'a> {
2626
}
2727
}
2828

29+
impl<'a, 'b> flatbuffers::FollowWith<'a> for TypeAliases<'b> {
30+
type Inner = TypeAliases<'a>;
31+
}
32+
2933
impl<'a> TypeAliases<'a> {
3034
pub const VT_I8_: flatbuffers::VOffsetT = 4;
3135
pub const VT_U8_: flatbuffers::VOffsetT = 6;

tests/monster_test_serialize/my_game/example_2/monster_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ impl<'a> flatbuffers::Follow<'a> for Monster<'a> {
2626
}
2727
}
2828

29+
impl<'a, 'b> flatbuffers::FollowWith<'a> for Monster<'b> {
30+
type Inner = Monster<'a>;
31+
}
32+
2933
impl<'a> Monster<'a> {
3034

3135
pub const fn get_fully_qualified_name() -> &'static str {

tests/monster_test_serialize/my_game/in_parent_namespace_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ impl<'a> flatbuffers::Follow<'a> for InParentNamespace<'a> {
2626
}
2727
}
2828

29+
impl<'a, 'b> flatbuffers::FollowWith<'a> for InParentNamespace<'b> {
30+
type Inner = InParentNamespace<'a>;
31+
}
32+
2933
impl<'a> InParentNamespace<'a> {
3034

3135
pub const fn get_fully_qualified_name() -> &'static str {

tests/monster_test_serialize/my_game/other_name_space/table_b_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ impl<'a> flatbuffers::Follow<'a> for TableB<'a> {
2626
}
2727
}
2828

29+
impl<'a, 'b> flatbuffers::FollowWith<'a> for TableB<'b> {
30+
type Inner = TableB<'a>;
31+
}
32+
2933
impl<'a> TableB<'a> {
3034
pub const VT_A: flatbuffers::VOffsetT = 4;
3135

tests/monster_test_serialize/table_a_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ impl<'a> flatbuffers::Follow<'a> for TableA<'a> {
2626
}
2727
}
2828

29+
impl<'a, 'b> flatbuffers::FollowWith<'a> for TableA<'b> {
30+
type Inner = TableA<'a>;
31+
}
32+
2933
impl<'a> TableA<'a> {
3034
pub const VT_B: flatbuffers::VOffsetT = 4;
3135

tests/more_defaults/more_defaults_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for MoreDefaults<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for MoreDefaults<'b> {
28+
type Inner = MoreDefaults<'a>;
29+
}
30+
2731
impl<'a> MoreDefaults<'a> {
2832
pub const VT_INTS: flatbuffers::VOffsetT = 4;
2933
pub const VT_FLOATS: flatbuffers::VOffsetT = 6;

tests/namespace_test/namespace_a/namespace_b/table_in_nested_ns_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for TableInNestedNS<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for TableInNestedNS<'b> {
28+
type Inner = TableInNestedNS<'a>;
29+
}
30+
2731
impl<'a> TableInNestedNS<'a> {
2832
pub const VT_FOO: flatbuffers::VOffsetT = 4;
2933

tests/namespace_test/namespace_a/second_table_in_a_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for SecondTableInA<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for SecondTableInA<'b> {
28+
type Inner = SecondTableInA<'a>;
29+
}
30+
2731
impl<'a> SecondTableInA<'a> {
2832
pub const VT_REFER_TO_C: flatbuffers::VOffsetT = 4;
2933

tests/namespace_test/namespace_a/table_in_first_ns_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for TableInFirstNS<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for TableInFirstNS<'b> {
28+
type Inner = TableInFirstNS<'a>;
29+
}
30+
2731
impl<'a> TableInFirstNS<'a> {
2832
pub const VT_FOO_TABLE: flatbuffers::VOffsetT = 4;
2933
pub const VT_FOO_ENUM: flatbuffers::VOffsetT = 6;

tests/namespace_test/namespace_c/table_in_c_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for TableInC<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for TableInC<'b> {
28+
type Inner = TableInC<'a>;
29+
}
30+
2731
impl<'a> TableInC<'a> {
2832
pub const VT_REFER_TO_A1: flatbuffers::VOffsetT = 4;
2933
pub const VT_REFER_TO_A2: flatbuffers::VOffsetT = 6;

tests/optional_scalars/optional_scalars/scalar_stuff_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for ScalarStuff<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for ScalarStuff<'b> {
28+
type Inner = ScalarStuff<'a>;
29+
}
30+
2731
impl<'a> ScalarStuff<'a> {
2832
pub const VT_JUST_I8: flatbuffers::VOffsetT = 4;
2933
pub const VT_MAYBE_I8: flatbuffers::VOffsetT = 6;

tests/private_annotation_test/annotations_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for Annotations<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for Annotations<'b> {
28+
type Inner = Annotations<'a>;
29+
}
30+
2731
impl<'a> Annotations<'a> {
2832
pub const VT_VALUE: flatbuffers::VOffsetT = 4;
2933

tests/private_annotation_test/game_generated.rs

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ impl<'a> flatbuffers::Follow<'a> for Game<'a> {
2424
}
2525
}
2626

27+
impl<'a, 'b> flatbuffers::FollowWith<'a> for Game<'b> {
28+
type Inner = Game<'a>;
29+
}
30+
2731
impl<'a> Game<'a> {
2832
pub const VT_VALUE: flatbuffers::VOffsetT = 4;
2933

0 commit comments

Comments
 (0)