mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-04 12:43:24 +00:00
* fix for rust build * Rust: Implement Serialize on generated types For debugging convenience it is really handy to be able to dump out types as another format (ie: json). For example, if we are logging a type to a structured logging system, or even printing it out in a structured way to the console. Right now we handle this by shelling out to `flatc` which is not ideal; by implementing Serialize on the generated types we can use any of the Serializer-implementing packages for our structured debug output. * clang-format * Make the flatbuffers Rust crate only have an optional dependency on the `serde` packages. * fix warning * fix rust test build * Oh yeah this needs to be initialized * fix toml syntax * code review feedback * rebuild test data
113 lines
3.0 KiB
Rust
113 lines
3.0 KiB
Rust
// automatically generated by the FlatBuffers compiler, do not modify
|
|
extern crate flatbuffers;
|
|
use std::mem;
|
|
use std::cmp::Ordering;
|
|
extern crate serde;
|
|
use self::serde::ser::{Serialize, Serializer, SerializeStruct};
|
|
use self::flatbuffers::{EndianScalar, Follow};
|
|
use super::*;
|
|
#[deprecated(since = "2.0.0", note = "Use associated constants instead. This will no longer be generated in 2021.")]
|
|
pub const ENUM_MIN_RACE: i8 = -1;
|
|
#[deprecated(since = "2.0.0", note = "Use associated constants instead. This will no longer be generated in 2021.")]
|
|
pub const ENUM_MAX_RACE: i8 = 2;
|
|
#[deprecated(since = "2.0.0", note = "Use associated constants instead. This will no longer be generated in 2021.")]
|
|
#[allow(non_camel_case_types)]
|
|
pub const ENUM_VALUES_RACE: [Race; 4] = [
|
|
Race::None,
|
|
Race::Human,
|
|
Race::Dwarf,
|
|
Race::Elf,
|
|
];
|
|
|
|
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
|
|
#[repr(transparent)]
|
|
pub struct Race(pub i8);
|
|
#[allow(non_upper_case_globals)]
|
|
impl Race {
|
|
pub const None: Self = Self(-1);
|
|
pub const Human: Self = Self(0);
|
|
pub const Dwarf: Self = Self(1);
|
|
pub const Elf: Self = Self(2);
|
|
|
|
pub const ENUM_MIN: i8 = -1;
|
|
pub const ENUM_MAX: i8 = 2;
|
|
pub const ENUM_VALUES: &'static [Self] = &[
|
|
Self::None,
|
|
Self::Human,
|
|
Self::Dwarf,
|
|
Self::Elf,
|
|
];
|
|
/// Returns the variant's name or "" if unknown.
|
|
pub fn variant_name(self) -> Option<&'static str> {
|
|
match self {
|
|
Self::None => Some("None"),
|
|
Self::Human => Some("Human"),
|
|
Self::Dwarf => Some("Dwarf"),
|
|
Self::Elf => Some("Elf"),
|
|
_ => None,
|
|
}
|
|
}
|
|
}
|
|
impl std::fmt::Debug for Race {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
|
|
if let Some(name) = self.variant_name() {
|
|
f.write_str(name)
|
|
} else {
|
|
f.write_fmt(format_args!("<UNKNOWN {:?}>", self.0))
|
|
}
|
|
}
|
|
}
|
|
impl Serialize for Race {
|
|
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
|
|
where
|
|
S: Serializer,
|
|
{
|
|
serializer.serialize_unit_variant("Race", self.0 as u32, self.variant_name().unwrap())
|
|
}
|
|
}
|
|
|
|
impl<'a> flatbuffers::Follow<'a> for Race {
|
|
type Inner = Self;
|
|
#[inline]
|
|
fn follow(buf: &'a [u8], loc: usize) -> Self::Inner {
|
|
let b = unsafe {
|
|
flatbuffers::read_scalar_at::<i8>(buf, loc)
|
|
};
|
|
Self(b)
|
|
}
|
|
}
|
|
|
|
impl flatbuffers::Push for Race {
|
|
type Output = Race;
|
|
#[inline]
|
|
fn push(&self, dst: &mut [u8], _rest: &[u8]) {
|
|
unsafe { flatbuffers::emplace_scalar::<i8>(dst, self.0); }
|
|
}
|
|
}
|
|
|
|
impl flatbuffers::EndianScalar for Race {
|
|
#[inline]
|
|
fn to_little_endian(self) -> Self {
|
|
let b = i8::to_le(self.0);
|
|
Self(b)
|
|
}
|
|
#[inline]
|
|
#[allow(clippy::wrong_self_convention)]
|
|
fn from_little_endian(self) -> Self {
|
|
let b = i8::from_le(self.0);
|
|
Self(b)
|
|
}
|
|
}
|
|
|
|
impl<'a> flatbuffers::Verifiable for Race {
|
|
#[inline]
|
|
fn run_verifier(
|
|
v: &mut flatbuffers::Verifier, pos: usize
|
|
) -> Result<(), flatbuffers::InvalidFlatbuffer> {
|
|
use self::flatbuffers::Verifiable;
|
|
i8::run_verifier(v, pos)
|
|
}
|
|
}
|
|
|
|
impl flatbuffers::SimpleToVerifyInSlice for Race {}
|