mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-28 20:10:01 +00:00
Generate better formatted Rust code (#8919)
* Cleans up Rust formatting * Regenerates generated schemas
This commit is contained in:
@@ -4,16 +4,18 @@ extern crate alloc;
|
||||
extern crate serde;
|
||||
use self::serde::ser::{Serialize, Serializer, SerializeStruct};
|
||||
use super::*;
|
||||
|
||||
pub enum MonsterOffset {}
|
||||
#[derive(Copy, Clone, PartialEq)]
|
||||
|
||||
/// an example documentation comment: "monster object"
|
||||
#[derive(Copy, Clone, PartialEq)]
|
||||
pub struct Monster<'a> {
|
||||
pub _tab: ::flatbuffers::Table<'a>,
|
||||
}
|
||||
|
||||
impl<'a> ::flatbuffers::Follow<'a> for Monster<'a> {
|
||||
type Inner = Monster<'a>;
|
||||
|
||||
#[inline]
|
||||
unsafe fn follow(buf: &'a [u8], loc: usize) -> Self::Inner {
|
||||
Self { _tab: unsafe { ::flatbuffers::Table::new(buf, loc) } }
|
||||
@@ -91,6 +93,7 @@ impl<'a> Monster<'a> {
|
||||
pub unsafe fn init_from_table(table: ::flatbuffers::Table<'a>) -> Self {
|
||||
Monster { _tab: table }
|
||||
}
|
||||
|
||||
#[allow(unused_mut)]
|
||||
pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr, A: ::flatbuffers::Allocator + 'bldr>(
|
||||
_fbb: &'mut_bldr mut ::flatbuffers::FlatBufferBuilder<'bldr, A>,
|
||||
@@ -396,6 +399,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<Vec3>(Monster::VT_POS, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn mana(&self) -> i16 {
|
||||
// Safety:
|
||||
@@ -403,6 +407,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<i16>(Monster::VT_MANA, Some(150)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn hp(&self) -> i16 {
|
||||
// Safety:
|
||||
@@ -410,6 +415,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<i16>(Monster::VT_HP, Some(100)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn name(&self) -> &'a str {
|
||||
// Safety:
|
||||
@@ -417,6 +423,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<&str>>(Monster::VT_NAME, None).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn key_compare_less_than(&self, o: &Monster) -> bool {
|
||||
self.name() < o.name()
|
||||
@@ -427,6 +434,7 @@ impl<'a> Monster<'a> {
|
||||
let key = self.name();
|
||||
key.cmp(val)
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn inventory(&self) -> Option<::flatbuffers::Vector<'a, u8>> {
|
||||
// Safety:
|
||||
@@ -434,6 +442,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, u8>>>(Monster::VT_INVENTORY, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn color(&self) -> Color {
|
||||
// Safety:
|
||||
@@ -441,6 +450,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<Color>(Monster::VT_COLOR, Some(Color::Blue)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn test_type(&self) -> Any {
|
||||
// Safety:
|
||||
@@ -448,6 +458,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<Any>(Monster::VT_TEST_TYPE, Some(Any::NONE)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn test(&self) -> Option<::flatbuffers::Table<'a>> {
|
||||
// Safety:
|
||||
@@ -455,6 +466,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Table<'a>>>(Monster::VT_TEST, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn test4(&self) -> Option<::flatbuffers::Vector<'a, Test>> {
|
||||
// Safety:
|
||||
@@ -462,6 +474,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, Test>>>(Monster::VT_TEST4, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn testarrayofstring(&self) -> Option<::flatbuffers::Vector<'a, ::flatbuffers::ForwardsUOffset<&'a str>>> {
|
||||
// Safety:
|
||||
@@ -469,6 +482,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, ::flatbuffers::ForwardsUOffset<&'a str>>>>(Monster::VT_TESTARRAYOFSTRING, None)}
|
||||
}
|
||||
|
||||
/// an example documentation comment: this will end up in the generated code
|
||||
/// multiline too
|
||||
#[inline]
|
||||
@@ -478,6 +492,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, ::flatbuffers::ForwardsUOffset<Monster>>>>(Monster::VT_TESTARRAYOFTABLES, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn enemy(&self) -> Option<Monster<'a>> {
|
||||
// Safety:
|
||||
@@ -485,6 +500,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<Monster>>(Monster::VT_ENEMY, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn testnestedflatbuffer(&self) -> Option<::flatbuffers::Vector<'a, u8>> {
|
||||
// Safety:
|
||||
@@ -492,6 +508,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, u8>>>(Monster::VT_TESTNESTEDFLATBUFFER, None)}
|
||||
}
|
||||
|
||||
pub fn testnestedflatbuffer_nested_flatbuffer(&'a self) -> Option<Monster<'a>> {
|
||||
self.testnestedflatbuffer().map(|data| {
|
||||
use ::flatbuffers::Follow;
|
||||
@@ -501,6 +518,7 @@ impl<'a> Monster<'a> {
|
||||
unsafe { <::flatbuffers::ForwardsUOffset<Monster<'a>>>::follow(data.bytes(), 0) }
|
||||
})
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn testempty(&self) -> Option<Stat<'a>> {
|
||||
// Safety:
|
||||
@@ -508,6 +526,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<Stat>>(Monster::VT_TESTEMPTY, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn testbool(&self) -> bool {
|
||||
// Safety:
|
||||
@@ -515,6 +534,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<bool>(Monster::VT_TESTBOOL, Some(false)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn testhashs32_fnv1(&self) -> i32 {
|
||||
// Safety:
|
||||
@@ -522,6 +542,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<i32>(Monster::VT_TESTHASHS32_FNV1, Some(0)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn testhashu32_fnv1(&self) -> u32 {
|
||||
// Safety:
|
||||
@@ -529,6 +550,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<u32>(Monster::VT_TESTHASHU32_FNV1, Some(0)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn testhashs64_fnv1(&self) -> i64 {
|
||||
// Safety:
|
||||
@@ -536,6 +558,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<i64>(Monster::VT_TESTHASHS64_FNV1, Some(0)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn testhashu64_fnv1(&self) -> u64 {
|
||||
// Safety:
|
||||
@@ -543,6 +566,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<u64>(Monster::VT_TESTHASHU64_FNV1, Some(0)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn testhashs32_fnv1a(&self) -> i32 {
|
||||
// Safety:
|
||||
@@ -550,6 +574,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<i32>(Monster::VT_TESTHASHS32_FNV1A, Some(0)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn testhashu32_fnv1a(&self) -> u32 {
|
||||
// Safety:
|
||||
@@ -557,6 +582,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<u32>(Monster::VT_TESTHASHU32_FNV1A, Some(0)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn testhashs64_fnv1a(&self) -> i64 {
|
||||
// Safety:
|
||||
@@ -564,6 +590,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<i64>(Monster::VT_TESTHASHS64_FNV1A, Some(0)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn testhashu64_fnv1a(&self) -> u64 {
|
||||
// Safety:
|
||||
@@ -571,6 +598,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<u64>(Monster::VT_TESTHASHU64_FNV1A, Some(0)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn testarrayofbools(&self) -> Option<::flatbuffers::Vector<'a, bool>> {
|
||||
// Safety:
|
||||
@@ -578,6 +606,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, bool>>>(Monster::VT_TESTARRAYOFBOOLS, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn testf(&self) -> f32 {
|
||||
// Safety:
|
||||
@@ -585,6 +614,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<f32>(Monster::VT_TESTF, Some(3.14159)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn testf2(&self) -> f32 {
|
||||
// Safety:
|
||||
@@ -592,6 +622,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<f32>(Monster::VT_TESTF2, Some(3.0)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn testf3(&self) -> f32 {
|
||||
// Safety:
|
||||
@@ -599,6 +630,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<f32>(Monster::VT_TESTF3, Some(0.0)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn testarrayofstring2(&self) -> Option<::flatbuffers::Vector<'a, ::flatbuffers::ForwardsUOffset<&'a str>>> {
|
||||
// Safety:
|
||||
@@ -606,6 +638,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, ::flatbuffers::ForwardsUOffset<&'a str>>>>(Monster::VT_TESTARRAYOFSTRING2, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn testarrayofsortedstruct(&self) -> Option<::flatbuffers::Vector<'a, Ability>> {
|
||||
// Safety:
|
||||
@@ -613,6 +646,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, Ability>>>(Monster::VT_TESTARRAYOFSORTEDSTRUCT, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn flex(&self) -> Option<::flatbuffers::Vector<'a, u8>> {
|
||||
// Safety:
|
||||
@@ -620,6 +654,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, u8>>>(Monster::VT_FLEX, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn test5(&self) -> Option<::flatbuffers::Vector<'a, Test>> {
|
||||
// Safety:
|
||||
@@ -627,6 +662,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, Test>>>(Monster::VT_TEST5, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn vector_of_longs(&self) -> Option<::flatbuffers::Vector<'a, i64>> {
|
||||
// Safety:
|
||||
@@ -634,6 +670,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, i64>>>(Monster::VT_VECTOR_OF_LONGS, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn vector_of_doubles(&self) -> Option<::flatbuffers::Vector<'a, f64>> {
|
||||
// Safety:
|
||||
@@ -641,6 +678,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, f64>>>(Monster::VT_VECTOR_OF_DOUBLES, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn parent_namespace_test(&self) -> Option<super::InParentNamespace<'a>> {
|
||||
// Safety:
|
||||
@@ -648,6 +686,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<super::InParentNamespace>>(Monster::VT_PARENT_NAMESPACE_TEST, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn vector_of_referrables(&self) -> Option<::flatbuffers::Vector<'a, ::flatbuffers::ForwardsUOffset<Referrable<'a>>>> {
|
||||
// Safety:
|
||||
@@ -655,6 +694,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, ::flatbuffers::ForwardsUOffset<Referrable>>>>(Monster::VT_VECTOR_OF_REFERRABLES, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn single_weak_reference(&self) -> u64 {
|
||||
// Safety:
|
||||
@@ -662,6 +702,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<u64>(Monster::VT_SINGLE_WEAK_REFERENCE, Some(0)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn vector_of_weak_references(&self) -> Option<::flatbuffers::Vector<'a, u64>> {
|
||||
// Safety:
|
||||
@@ -669,6 +710,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, u64>>>(Monster::VT_VECTOR_OF_WEAK_REFERENCES, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn vector_of_strong_referrables(&self) -> Option<::flatbuffers::Vector<'a, ::flatbuffers::ForwardsUOffset<Referrable<'a>>>> {
|
||||
// Safety:
|
||||
@@ -676,6 +718,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, ::flatbuffers::ForwardsUOffset<Referrable>>>>(Monster::VT_VECTOR_OF_STRONG_REFERRABLES, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn co_owning_reference(&self) -> u64 {
|
||||
// Safety:
|
||||
@@ -683,6 +726,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<u64>(Monster::VT_CO_OWNING_REFERENCE, Some(0)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn vector_of_co_owning_references(&self) -> Option<::flatbuffers::Vector<'a, u64>> {
|
||||
// Safety:
|
||||
@@ -690,6 +734,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, u64>>>(Monster::VT_VECTOR_OF_CO_OWNING_REFERENCES, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn non_owning_reference(&self) -> u64 {
|
||||
// Safety:
|
||||
@@ -697,6 +742,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<u64>(Monster::VT_NON_OWNING_REFERENCE, Some(0)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn vector_of_non_owning_references(&self) -> Option<::flatbuffers::Vector<'a, u64>> {
|
||||
// Safety:
|
||||
@@ -704,6 +750,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, u64>>>(Monster::VT_VECTOR_OF_NON_OWNING_REFERENCES, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn any_unique_type(&self) -> AnyUniqueAliases {
|
||||
// Safety:
|
||||
@@ -711,6 +758,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<AnyUniqueAliases>(Monster::VT_ANY_UNIQUE_TYPE, Some(AnyUniqueAliases::NONE)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn any_unique(&self) -> Option<::flatbuffers::Table<'a>> {
|
||||
// Safety:
|
||||
@@ -718,6 +766,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Table<'a>>>(Monster::VT_ANY_UNIQUE, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn any_ambiguous_type(&self) -> AnyAmbiguousAliases {
|
||||
// Safety:
|
||||
@@ -725,6 +774,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<AnyAmbiguousAliases>(Monster::VT_ANY_AMBIGUOUS_TYPE, Some(AnyAmbiguousAliases::NONE)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn any_ambiguous(&self) -> Option<::flatbuffers::Table<'a>> {
|
||||
// Safety:
|
||||
@@ -732,6 +782,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Table<'a>>>(Monster::VT_ANY_AMBIGUOUS, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn vector_of_enums(&self) -> Option<::flatbuffers::Vector<'a, Color>> {
|
||||
// Safety:
|
||||
@@ -739,6 +790,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, Color>>>(Monster::VT_VECTOR_OF_ENUMS, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn signed_enum(&self) -> Race {
|
||||
// Safety:
|
||||
@@ -746,6 +798,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<Race>(Monster::VT_SIGNED_ENUM, Some(Race::None)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn testrequirednestedflatbuffer(&self) -> Option<::flatbuffers::Vector<'a, u8>> {
|
||||
// Safety:
|
||||
@@ -753,6 +806,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, u8>>>(Monster::VT_TESTREQUIREDNESTEDFLATBUFFER, None)}
|
||||
}
|
||||
|
||||
pub fn testrequirednestedflatbuffer_nested_flatbuffer(&'a self) -> Option<Monster<'a>> {
|
||||
self.testrequirednestedflatbuffer().map(|data| {
|
||||
use ::flatbuffers::Follow;
|
||||
@@ -762,6 +816,7 @@ impl<'a> Monster<'a> {
|
||||
unsafe { <::flatbuffers::ForwardsUOffset<Monster<'a>>>::follow(data.bytes(), 0) }
|
||||
})
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn scalar_key_sorted_tables(&self) -> Option<::flatbuffers::Vector<'a, ::flatbuffers::ForwardsUOffset<Stat<'a>>>> {
|
||||
// Safety:
|
||||
@@ -769,6 +824,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<::flatbuffers::ForwardsUOffset<::flatbuffers::Vector<'a, ::flatbuffers::ForwardsUOffset<Stat>>>>(Monster::VT_SCALAR_KEY_SORTED_TABLES, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn native_inline(&self) -> Option<&'a Test> {
|
||||
// Safety:
|
||||
@@ -776,6 +832,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<Test>(Monster::VT_NATIVE_INLINE, None)}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn long_enum_non_enum_default(&self) -> LongEnum {
|
||||
// Safety:
|
||||
@@ -783,6 +840,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<LongEnum>(Monster::VT_LONG_ENUM_NON_ENUM_DEFAULT, Some(Default::default())).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn long_enum_normal_default(&self) -> LongEnum {
|
||||
// Safety:
|
||||
@@ -790,6 +848,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<LongEnum>(Monster::VT_LONG_ENUM_NORMAL_DEFAULT, Some(LongEnum::LongOne)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn nan_default(&self) -> f32 {
|
||||
// Safety:
|
||||
@@ -797,6 +856,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<f32>(Monster::VT_NAN_DEFAULT, Some(f32::NAN)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn inf_default(&self) -> f32 {
|
||||
// Safety:
|
||||
@@ -804,6 +864,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<f32>(Monster::VT_INF_DEFAULT, Some(f32::INFINITY)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn positive_inf_default(&self) -> f32 {
|
||||
// Safety:
|
||||
@@ -811,6 +872,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<f32>(Monster::VT_POSITIVE_INF_DEFAULT, Some(f32::INFINITY)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn infinity_default(&self) -> f32 {
|
||||
// Safety:
|
||||
@@ -818,6 +880,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<f32>(Monster::VT_INFINITY_DEFAULT, Some(f32::INFINITY)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn positive_infinity_default(&self) -> f32 {
|
||||
// Safety:
|
||||
@@ -825,6 +888,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<f32>(Monster::VT_POSITIVE_INFINITY_DEFAULT, Some(f32::INFINITY)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn negative_inf_default(&self) -> f32 {
|
||||
// Safety:
|
||||
@@ -832,6 +896,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<f32>(Monster::VT_NEGATIVE_INF_DEFAULT, Some(f32::NEG_INFINITY)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn negative_infinity_default(&self) -> f32 {
|
||||
// Safety:
|
||||
@@ -839,6 +904,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<f32>(Monster::VT_NEGATIVE_INFINITY_DEFAULT, Some(f32::NEG_INFINITY)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn double_inf_default(&self) -> f64 {
|
||||
// Safety:
|
||||
@@ -846,6 +912,7 @@ impl<'a> Monster<'a> {
|
||||
// which contains a valid value in this slot
|
||||
unsafe { self._tab.get::<f64>(Monster::VT_DOUBLE_INF_DEFAULT, Some(f64::INFINITY)).unwrap()}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
#[allow(non_snake_case)]
|
||||
pub fn test_as_monster(&self) -> Option<Monster<'a>> {
|
||||
@@ -980,7 +1047,6 @@ impl<'a> Monster<'a> {
|
||||
None
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
impl ::flatbuffers::Verifiable for Monster<'_> {
|
||||
@@ -1072,6 +1138,7 @@ impl ::flatbuffers::Verifiable for Monster<'_> {
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
pub struct MonsterArgs<'a> {
|
||||
pub pos: Option<&'a Vec3>,
|
||||
pub mana: i16,
|
||||
@@ -1135,6 +1202,7 @@ pub struct MonsterArgs<'a> {
|
||||
pub negative_infinity_default: f32,
|
||||
pub double_inf_default: f64,
|
||||
}
|
||||
|
||||
impl<'a> Default for MonsterArgs<'a> {
|
||||
#[inline]
|
||||
fn default() -> Self {
|
||||
@@ -1433,251 +1501,313 @@ pub struct MonsterBuilder<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> {
|
||||
fbb_: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>,
|
||||
start_: ::flatbuffers::WIPOffset<::flatbuffers::TableUnfinishedWIPOffset>,
|
||||
}
|
||||
|
||||
impl<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> MonsterBuilder<'a, 'b, A> {
|
||||
#[inline]
|
||||
pub fn add_pos(&mut self, pos: &Vec3) {
|
||||
self.fbb_.push_slot_always::<&Vec3>(Monster::VT_POS, pos);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_mana(&mut self, mana: i16) {
|
||||
self.fbb_.push_slot::<i16>(Monster::VT_MANA, mana, 150);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_hp(&mut self, hp: i16) {
|
||||
self.fbb_.push_slot::<i16>(Monster::VT_HP, hp, 100);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_name(&mut self, name: ::flatbuffers::WIPOffset<&'b str>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_NAME, name);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_inventory(&mut self, inventory: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , u8>>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_INVENTORY, inventory);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_color(&mut self, color: Color) {
|
||||
self.fbb_.push_slot::<Color>(Monster::VT_COLOR, color, Color::Blue);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_test_type(&mut self, test_type: Any) {
|
||||
self.fbb_.push_slot::<Any>(Monster::VT_TEST_TYPE, test_type, Any::NONE);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_test(&mut self, test: ::flatbuffers::WIPOffset<::flatbuffers::UnionWIPOffset>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_TEST, test);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_test4(&mut self, test4: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , Test>>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_TEST4, test4);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_testarrayofstring(&mut self, testarrayofstring: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , ::flatbuffers::ForwardsUOffset<&'b str>>>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_TESTARRAYOFSTRING, testarrayofstring);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_testarrayoftables(&mut self, testarrayoftables: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , ::flatbuffers::ForwardsUOffset<Monster<'b >>>>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_TESTARRAYOFTABLES, testarrayoftables);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_enemy(&mut self, enemy: ::flatbuffers::WIPOffset<Monster<'b >>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<Monster>>(Monster::VT_ENEMY, enemy);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_testnestedflatbuffer(&mut self, testnestedflatbuffer: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , u8>>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_TESTNESTEDFLATBUFFER, testnestedflatbuffer);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_testempty(&mut self, testempty: ::flatbuffers::WIPOffset<Stat<'b >>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<Stat>>(Monster::VT_TESTEMPTY, testempty);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_testbool(&mut self, testbool: bool) {
|
||||
self.fbb_.push_slot::<bool>(Monster::VT_TESTBOOL, testbool, false);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_testhashs32_fnv1(&mut self, testhashs32_fnv1: i32) {
|
||||
self.fbb_.push_slot::<i32>(Monster::VT_TESTHASHS32_FNV1, testhashs32_fnv1, 0);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_testhashu32_fnv1(&mut self, testhashu32_fnv1: u32) {
|
||||
self.fbb_.push_slot::<u32>(Monster::VT_TESTHASHU32_FNV1, testhashu32_fnv1, 0);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_testhashs64_fnv1(&mut self, testhashs64_fnv1: i64) {
|
||||
self.fbb_.push_slot::<i64>(Monster::VT_TESTHASHS64_FNV1, testhashs64_fnv1, 0);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_testhashu64_fnv1(&mut self, testhashu64_fnv1: u64) {
|
||||
self.fbb_.push_slot::<u64>(Monster::VT_TESTHASHU64_FNV1, testhashu64_fnv1, 0);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_testhashs32_fnv1a(&mut self, testhashs32_fnv1a: i32) {
|
||||
self.fbb_.push_slot::<i32>(Monster::VT_TESTHASHS32_FNV1A, testhashs32_fnv1a, 0);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_testhashu32_fnv1a(&mut self, testhashu32_fnv1a: u32) {
|
||||
self.fbb_.push_slot::<u32>(Monster::VT_TESTHASHU32_FNV1A, testhashu32_fnv1a, 0);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_testhashs64_fnv1a(&mut self, testhashs64_fnv1a: i64) {
|
||||
self.fbb_.push_slot::<i64>(Monster::VT_TESTHASHS64_FNV1A, testhashs64_fnv1a, 0);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_testhashu64_fnv1a(&mut self, testhashu64_fnv1a: u64) {
|
||||
self.fbb_.push_slot::<u64>(Monster::VT_TESTHASHU64_FNV1A, testhashu64_fnv1a, 0);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_testarrayofbools(&mut self, testarrayofbools: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , bool>>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_TESTARRAYOFBOOLS, testarrayofbools);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_testf(&mut self, testf: f32) {
|
||||
self.fbb_.push_slot::<f32>(Monster::VT_TESTF, testf, 3.14159);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_testf2(&mut self, testf2: f32) {
|
||||
self.fbb_.push_slot::<f32>(Monster::VT_TESTF2, testf2, 3.0);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_testf3(&mut self, testf3: f32) {
|
||||
self.fbb_.push_slot::<f32>(Monster::VT_TESTF3, testf3, 0.0);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_testarrayofstring2(&mut self, testarrayofstring2: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , ::flatbuffers::ForwardsUOffset<&'b str>>>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_TESTARRAYOFSTRING2, testarrayofstring2);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_testarrayofsortedstruct(&mut self, testarrayofsortedstruct: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , Ability>>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_TESTARRAYOFSORTEDSTRUCT, testarrayofsortedstruct);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_flex(&mut self, flex: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , u8>>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_FLEX, flex);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_test5(&mut self, test5: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , Test>>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_TEST5, test5);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_vector_of_longs(&mut self, vector_of_longs: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , i64>>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_VECTOR_OF_LONGS, vector_of_longs);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_vector_of_doubles(&mut self, vector_of_doubles: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , f64>>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_VECTOR_OF_DOUBLES, vector_of_doubles);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_parent_namespace_test(&mut self, parent_namespace_test: ::flatbuffers::WIPOffset<super::InParentNamespace<'b >>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<super::InParentNamespace>>(Monster::VT_PARENT_NAMESPACE_TEST, parent_namespace_test);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_vector_of_referrables(&mut self, vector_of_referrables: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , ::flatbuffers::ForwardsUOffset<Referrable<'b >>>>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_VECTOR_OF_REFERRABLES, vector_of_referrables);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_single_weak_reference(&mut self, single_weak_reference: u64) {
|
||||
self.fbb_.push_slot::<u64>(Monster::VT_SINGLE_WEAK_REFERENCE, single_weak_reference, 0);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_vector_of_weak_references(&mut self, vector_of_weak_references: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , u64>>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_VECTOR_OF_WEAK_REFERENCES, vector_of_weak_references);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_vector_of_strong_referrables(&mut self, vector_of_strong_referrables: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , ::flatbuffers::ForwardsUOffset<Referrable<'b >>>>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_VECTOR_OF_STRONG_REFERRABLES, vector_of_strong_referrables);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_co_owning_reference(&mut self, co_owning_reference: u64) {
|
||||
self.fbb_.push_slot::<u64>(Monster::VT_CO_OWNING_REFERENCE, co_owning_reference, 0);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_vector_of_co_owning_references(&mut self, vector_of_co_owning_references: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , u64>>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_VECTOR_OF_CO_OWNING_REFERENCES, vector_of_co_owning_references);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_non_owning_reference(&mut self, non_owning_reference: u64) {
|
||||
self.fbb_.push_slot::<u64>(Monster::VT_NON_OWNING_REFERENCE, non_owning_reference, 0);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_vector_of_non_owning_references(&mut self, vector_of_non_owning_references: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , u64>>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_VECTOR_OF_NON_OWNING_REFERENCES, vector_of_non_owning_references);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_any_unique_type(&mut self, any_unique_type: AnyUniqueAliases) {
|
||||
self.fbb_.push_slot::<AnyUniqueAliases>(Monster::VT_ANY_UNIQUE_TYPE, any_unique_type, AnyUniqueAliases::NONE);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_any_unique(&mut self, any_unique: ::flatbuffers::WIPOffset<::flatbuffers::UnionWIPOffset>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_ANY_UNIQUE, any_unique);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_any_ambiguous_type(&mut self, any_ambiguous_type: AnyAmbiguousAliases) {
|
||||
self.fbb_.push_slot::<AnyAmbiguousAliases>(Monster::VT_ANY_AMBIGUOUS_TYPE, any_ambiguous_type, AnyAmbiguousAliases::NONE);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_any_ambiguous(&mut self, any_ambiguous: ::flatbuffers::WIPOffset<::flatbuffers::UnionWIPOffset>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_ANY_AMBIGUOUS, any_ambiguous);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_vector_of_enums(&mut self, vector_of_enums: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , Color>>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_VECTOR_OF_ENUMS, vector_of_enums);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_signed_enum(&mut self, signed_enum: Race) {
|
||||
self.fbb_.push_slot::<Race>(Monster::VT_SIGNED_ENUM, signed_enum, Race::None);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_testrequirednestedflatbuffer(&mut self, testrequirednestedflatbuffer: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , u8>>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_TESTREQUIREDNESTEDFLATBUFFER, testrequirednestedflatbuffer);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_scalar_key_sorted_tables(&mut self, scalar_key_sorted_tables: ::flatbuffers::WIPOffset<::flatbuffers::Vector<'b , ::flatbuffers::ForwardsUOffset<Stat<'b >>>>) {
|
||||
self.fbb_.push_slot_always::<::flatbuffers::WIPOffset<_>>(Monster::VT_SCALAR_KEY_SORTED_TABLES, scalar_key_sorted_tables);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_native_inline(&mut self, native_inline: &Test) {
|
||||
self.fbb_.push_slot_always::<&Test>(Monster::VT_NATIVE_INLINE, native_inline);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_long_enum_non_enum_default(&mut self, long_enum_non_enum_default: LongEnum) {
|
||||
self.fbb_.push_slot::<LongEnum>(Monster::VT_LONG_ENUM_NON_ENUM_DEFAULT, long_enum_non_enum_default, Default::default());
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_long_enum_normal_default(&mut self, long_enum_normal_default: LongEnum) {
|
||||
self.fbb_.push_slot::<LongEnum>(Monster::VT_LONG_ENUM_NORMAL_DEFAULT, long_enum_normal_default, LongEnum::LongOne);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_nan_default(&mut self, nan_default: f32) {
|
||||
self.fbb_.push_slot::<f32>(Monster::VT_NAN_DEFAULT, nan_default, f32::NAN);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_inf_default(&mut self, inf_default: f32) {
|
||||
self.fbb_.push_slot::<f32>(Monster::VT_INF_DEFAULT, inf_default, f32::INFINITY);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_positive_inf_default(&mut self, positive_inf_default: f32) {
|
||||
self.fbb_.push_slot::<f32>(Monster::VT_POSITIVE_INF_DEFAULT, positive_inf_default, f32::INFINITY);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_infinity_default(&mut self, infinity_default: f32) {
|
||||
self.fbb_.push_slot::<f32>(Monster::VT_INFINITY_DEFAULT, infinity_default, f32::INFINITY);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_positive_infinity_default(&mut self, positive_infinity_default: f32) {
|
||||
self.fbb_.push_slot::<f32>(Monster::VT_POSITIVE_INFINITY_DEFAULT, positive_infinity_default, f32::INFINITY);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_negative_inf_default(&mut self, negative_inf_default: f32) {
|
||||
self.fbb_.push_slot::<f32>(Monster::VT_NEGATIVE_INF_DEFAULT, negative_inf_default, f32::NEG_INFINITY);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_negative_infinity_default(&mut self, negative_infinity_default: f32) {
|
||||
self.fbb_.push_slot::<f32>(Monster::VT_NEGATIVE_INFINITY_DEFAULT, negative_infinity_default, f32::NEG_INFINITY);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn add_double_inf_default(&mut self, double_inf_default: f64) {
|
||||
self.fbb_.push_slot::<f64>(Monster::VT_DOUBLE_INF_DEFAULT, double_inf_default, f64::INFINITY);
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn new(_fbb: &'b mut ::flatbuffers::FlatBufferBuilder<'a, A>) -> MonsterBuilder<'a, 'b, A> {
|
||||
let start = _fbb.start_table();
|
||||
@@ -1686,6 +1816,7 @@ impl<'a: 'b, 'b, A: ::flatbuffers::Allocator + 'a> MonsterBuilder<'a, 'b, A> {
|
||||
start_: start,
|
||||
}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn finish(self) -> ::flatbuffers::WIPOffset<Monster<'a>> {
|
||||
let o = self.fbb_.end_table(self.start_);
|
||||
@@ -1839,6 +1970,7 @@ impl ::core::fmt::Debug for Monster<'_> {
|
||||
ds.finish()
|
||||
}
|
||||
}
|
||||
|
||||
#[non_exhaustive]
|
||||
#[derive(Debug, Clone, PartialEq)]
|
||||
pub struct MonsterT {
|
||||
@@ -1901,6 +2033,7 @@ pub struct MonsterT {
|
||||
pub negative_infinity_default: f32,
|
||||
pub double_inf_default: f64,
|
||||
}
|
||||
|
||||
impl Default for MonsterT {
|
||||
fn default() -> Self {
|
||||
Self {
|
||||
@@ -1965,6 +2098,7 @@ impl Default for MonsterT {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl MonsterT {
|
||||
pub fn pack<'b, A: ::flatbuffers::Allocator + 'b>(
|
||||
&self,
|
||||
@@ -2147,66 +2281,73 @@ impl MonsterT {
|
||||
})
|
||||
}
|
||||
}
|
||||
#[inline]
|
||||
|
||||
/// Verifies that a buffer of bytes contains a `Monster`
|
||||
/// and returns it.
|
||||
/// Note that verification is still experimental and may not
|
||||
/// catch every error, or be maximally performant. For the
|
||||
/// previous, unchecked, behavior use
|
||||
/// `root_as_monster_unchecked`.
|
||||
#[inline]
|
||||
pub fn root_as_monster(buf: &[u8]) -> Result<Monster<'_>, ::flatbuffers::InvalidFlatbuffer> {
|
||||
::flatbuffers::root::<Monster>(buf)
|
||||
}
|
||||
#[inline]
|
||||
|
||||
/// Verifies that a buffer of bytes contains a size prefixed
|
||||
/// `Monster` and returns it.
|
||||
/// Note that verification is still experimental and may not
|
||||
/// catch every error, or be maximally performant. For the
|
||||
/// previous, unchecked, behavior use
|
||||
/// `size_prefixed_root_as_monster_unchecked`.
|
||||
#[inline]
|
||||
pub fn size_prefixed_root_as_monster(buf: &[u8]) -> Result<Monster<'_>, ::flatbuffers::InvalidFlatbuffer> {
|
||||
::flatbuffers::size_prefixed_root::<Monster>(buf)
|
||||
}
|
||||
#[inline]
|
||||
|
||||
/// Verifies, with the given options, that a buffer of bytes
|
||||
/// contains a `Monster` and returns it.
|
||||
/// Note that verification is still experimental and may not
|
||||
/// catch every error, or be maximally performant. For the
|
||||
/// previous, unchecked, behavior use
|
||||
/// `root_as_monster_unchecked`.
|
||||
#[inline]
|
||||
pub fn root_as_monster_with_opts<'b, 'o>(
|
||||
opts: &'o ::flatbuffers::VerifierOptions,
|
||||
buf: &'b [u8],
|
||||
) -> Result<Monster<'b>, ::flatbuffers::InvalidFlatbuffer> {
|
||||
::flatbuffers::root_with_opts::<Monster<'b>>(opts, buf)
|
||||
}
|
||||
#[inline]
|
||||
|
||||
/// Verifies, with the given verifier options, that a buffer of
|
||||
/// bytes contains a size prefixed `Monster` and returns
|
||||
/// it. Note that verification is still experimental and may not
|
||||
/// catch every error, or be maximally performant. For the
|
||||
/// previous, unchecked, behavior use
|
||||
/// `root_as_monster_unchecked`.
|
||||
#[inline]
|
||||
pub fn size_prefixed_root_as_monster_with_opts<'b, 'o>(
|
||||
opts: &'o ::flatbuffers::VerifierOptions,
|
||||
buf: &'b [u8],
|
||||
) -> Result<Monster<'b>, ::flatbuffers::InvalidFlatbuffer> {
|
||||
::flatbuffers::size_prefixed_root_with_opts::<Monster<'b>>(opts, buf)
|
||||
}
|
||||
#[inline]
|
||||
|
||||
/// Assumes, without verification, that a buffer of bytes contains a Monster and returns it.
|
||||
/// # Safety
|
||||
/// Callers must trust the given bytes do indeed contain a valid `Monster`.
|
||||
#[inline]
|
||||
pub unsafe fn root_as_monster_unchecked(buf: &[u8]) -> Monster<'_> {
|
||||
unsafe { ::flatbuffers::root_unchecked::<Monster>(buf) }
|
||||
}
|
||||
#[inline]
|
||||
|
||||
/// Assumes, without verification, that a buffer of bytes contains a size prefixed Monster and returns it.
|
||||
/// # Safety
|
||||
/// Callers must trust the given bytes do indeed contain a valid size prefixed `Monster`.
|
||||
#[inline]
|
||||
pub unsafe fn size_prefixed_root_as_monster_unchecked(buf: &[u8]) -> Monster<'_> {
|
||||
unsafe { ::flatbuffers::size_prefixed_root_unchecked::<Monster>(buf) }
|
||||
}
|
||||
|
||||
pub const MONSTER_IDENTIFIER: &str = "MONS";
|
||||
|
||||
#[inline]
|
||||
|
||||
Reference in New Issue
Block a user