[][src]Module arrow::buffer

The main type in the module is Buffer, a contiguous immutable memory region of fixed size aligned at a 64-byte boundary. MutableBuffer is like Buffer, but it can be mutated and grown.

Structs

Buffer

Buffer is a contiguous memory region of fixed size and is aligned at a 64-byte boundary. Buffer is immutable.

MutableBuffer

Similar to Buffer, but is growable and can be mutated. A mutable buffer can be converted into a immutable buffer via the freeze method.