Skip to content

Commit 8067cd4

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

34 files changed

Lines changed: 136 additions & 0 deletions

samples/rust_generated/my_game/sample/monster_generated.rs

Lines changed: 4 additions & 0 deletions
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

Lines changed: 4 additions & 0 deletions
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

Lines changed: 4 additions & 0 deletions
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

Lines changed: 4 additions & 0 deletions
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

Lines changed: 4 additions & 0 deletions
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

Lines changed: 4 additions & 0 deletions
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

Lines changed: 4 additions & 0 deletions
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

Lines changed: 4 additions & 0 deletions
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

Lines changed: 4 additions & 0 deletions
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

Lines changed: 4 additions & 0 deletions
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

0 commit comments

Comments
 (0)