xref: /aosp_15_r20/external/flatbuffers/go/struct.go (revision 890232f25432b36107d06881e0a25aaa6b473652)
1package flatbuffers
2
3// Struct wraps a byte slice and provides read access to its data.
4//
5// Structs do not have a vtable.
6type Struct struct {
7	Table
8}
9