Structs§
- Array
Node Flat Buffer - A utility struct for creating an
fba::ArrayNode
flatbuffer. - Array
Parts ArrayParts
represents a parsed but not-yet-decoded deserializedArray
. It contains all the information from the serialized form, without anything extra. i.e. it is missing aDType
andlen
, and theencoding_id
is not yet resolved to a concrete vtable.- Serialize
Options - Options for serializing an array.
Traits§
- Array
Children - To minimize the serialized form, arrays do not persist their own dtype and length. Instead,
parent arrays pass this information down during deserialization. This trait abstracts
over either a serialized
crate::serde::ArrayParts
or the in-memorycrate::data::ArrayData
.