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 …]
266 public class ScalarStuffT class305 public ScalarStuffT() { in ScalarStuffT() method in optional_scalars.ScalarStuffT
398 class ScalarStuffT(object): class
57 struct ScalarStuffT : public flatbuffers::NativeTable { struct58 typedef ScalarStuff TableType;59 int8_t just_i8 = 0;60 flatbuffers::Optional<int8_t> maybe_i8 = flatbuffers::nullopt;61 int8_t default_i8 = 42;62 uint8_t just_u8 = 0;63 flatbuffers::Optional<uint8_t> maybe_u8 = flatbuffers::nullopt;64 uint8_t default_u8 = 42;65 int16_t just_i16 = 0;66 flatbuffers::Optional<int16_t> maybe_i16 = flatbuffers::nullopt;[all …]
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 …]
60 struct ScalarStuffT : public flatbuffers::NativeTable { struct61 typedef ScalarStuff TableType;62 int8_t just_i8 = 0;63 flatbuffers::Optional<int8_t> maybe_i8 = flatbuffers::nullopt;64 int8_t default_i8 = 42;65 uint8_t just_u8 = 0;66 flatbuffers::Optional<uint8_t> maybe_u8 = flatbuffers::nullopt;67 uint8_t default_u8 = 42;68 int16_t just_i16 = 0;69 flatbuffers::Optional<int16_t> maybe_i16 = flatbuffers::nullopt;[all …]
118 pub fn unpack(&self) -> ScalarStuffT { in unpack()678 pub struct ScalarStuffT { struct679 pub just_i8: i8,680 pub maybe_i8: Option<i8>,681 pub default_i8: i8,682 pub just_u8: u8,683 pub maybe_u8: Option<u8>,684 pub default_u8: u8,685 pub just_i16: i16,686 pub maybe_i16: Option<i16>,[all …]