Searched defs:ScalarStuffT (Results 1 – 7 of 7) sorted by relevance
9 type ScalarStuffT struct { struct10 JustI8 int8 `json:"just_i8"`11 MaybeI8 *int8 `json:"maybe_i8"`12 DefaultI8 int8 `json:"default_i8"`13 JustU8 byte `json:"just_u8"`14 MaybeU8 *byte `json:"maybe_u8"`15 DefaultU8 byte `json:"default_u8"`16 JustI16 int16 `json:"just_i16"`17 MaybeI16 *int16 `json:"maybe_i16"`18 DefaultI16 int16 `json:"default_i16"`[all …]
267 public class ScalarStuffT class306 public ScalarStuffT() { in ScalarStuffT() method in optional_scalars.ScalarStuffT
512 class ScalarStuffT(object): class
50 struct ScalarStuffT : public flatbuffers::NativeTable { struct51 typedef ScalarStuff TableType;52 int8_t just_i8 = 0;53 flatbuffers::Optional<int8_t> maybe_i8 = flatbuffers::nullopt;54 int8_t default_i8 = 42;55 uint8_t just_u8 = 0;56 flatbuffers::Optional<uint8_t> maybe_u8 = flatbuffers::nullopt;57 uint8_t default_u8 = 42;58 int16_t just_i16 = 0;59 flatbuffers::Optional<int16_t> maybe_i16 = flatbuffers::nullopt;[all …]
57 struct ScalarStuffT : public ::flatbuffers::NativeTable { struct58 typedef ScalarStuff TableType;59 int8_t just_i8 = 0;61 int8_t default_i8 = 42;62 uint8_t just_u8 = 0;64 uint8_t default_u8 = 42;65 int16_t just_i16 = 0;67 int16_t default_i16 = 42;68 uint16_t just_u16 = 0;70 uint16_t default_u16 = 42;[all …]
118 pub fn unpack(&self) -> ScalarStuffT { in unpack()786 pub struct ScalarStuffT { struct787 pub just_i8: i8,788 pub maybe_i8: Option<i8>,789 pub default_i8: i8,790 pub just_u8: u8,791 pub maybe_u8: Option<u8>,792 pub default_u8: u8,793 pub just_i16: i16,794 pub maybe_i16: Option<i16>,[all …]
60 struct ScalarStuffT : public ::flatbuffers::NativeTable { struct61 typedef ScalarStuff TableType;62 int8_t just_i8 = 0;64 int8_t default_i8 = 42;65 uint8_t just_u8 = 0;67 uint8_t default_u8 = 42;68 int16_t just_i16 = 0;70 int16_t default_i16 = 42;71 uint16_t just_u16 = 0;73 uint16_t default_u16 = 42;[all …]