Crate vecs_file

Source

Structs§

Vectors
Main structure returned by readers or consumed by writers. It contains vectors serialized into a single Vec container.

Enums§

VecsError
Error types that vecs operations can return.

Traits§

SupportedTypes
Trait defined for converting types from and to little endian bytes.

Functions§

read_vecs
Same as read_vecs_file but takes a seek-able reader and a size to read (how much to consume).
read_vecs_file
Reads a vecs file where T is the type of the vectors (i32|f32|u8).
write_vecs
Writes vectors to a writer instead of a file.
write_vecs_file
Writes a vecs file. This is the counterpart to read_vecs_file.