struct.go 154 B

12345678
  1. package flatbuffers
  2. // Struct wraps a byte slice and provides read access to its data.
  3. //
  4. // Structs do not have a vtable.
  5. type Struct struct {
  6. Table
  7. }