[][src]Struct arrow::array::BufferBuilder

pub struct BufferBuilder<T: ArrowNativeType> { /* fields omitted */ }

Builder for creating a Buffer object.

A Buffer is the underlying data structure of Arrow's Arrays.

For all supported types, there are type definitions for the generic version of BufferBuilder<T>, e.g. UInt8BufferBuilder.

Example:

use arrow::array::UInt8BufferBuilder;

let mut builder = UInt8BufferBuilder::new(100);
builder.append_slice(&[42, 43, 44]);
builder.append(45);
let buffer = builder.finish();

assert_eq!(unsafe { buffer.typed_data::<u8>() }, &[42, 43, 44, 45]);

Implementations

impl<T: ArrowNativeType> BufferBuilder<T>[src]

pub fn new(capacity: usize) -> Self[src]

Creates a new builder with initial capacity for at least capacity elements of type T.

The capacity can later be manually adjusted with the reserve() method. Also the append(), append_slice() and advance() methods automatically increase the capacity if needed.

Example:

use arrow::array::UInt8BufferBuilder;

let mut builder = UInt8BufferBuilder::new(10);

assert!(builder.capacity() >= 10);

pub fn len(&self) -> usize[src]

Returns the current number of array elements in the internal buffer.

Example:

use arrow::array::UInt8BufferBuilder;

let mut builder = UInt8BufferBuilder::new(10);
builder.append(42);

assert_eq!(builder.len(), 1);

pub fn is_empty(&self) -> bool[src]

Returns whether the internal buffer is empty.

Example:

use arrow::array::UInt8BufferBuilder;

let mut builder = UInt8BufferBuilder::new(10);
builder.append(42);

assert_eq!(builder.is_empty(), false);

pub fn capacity(&self) -> usize[src]

Returns the actual capacity (number of elements) of the internal buffer.

Note: the internal capacity returned by this method might be larger than what you'd expect after setting the capacity in the new() or reserve() functions.

pub fn advance(&mut self, i: usize)[src]

Increases the number of elements in the internal buffer by n and resizes the buffer as needed.

The values of the newly added elements are 0. This method is usually used when appending NULL values to the buffer as they still require physical memory space.

Example:

use arrow::array::UInt8BufferBuilder;

let mut builder = UInt8BufferBuilder::new(10);
builder.advance(2);

assert_eq!(builder.len(), 2);

pub fn reserve(&mut self, n: usize)[src]

Reserves memory for at least n more elements of type T.

Example:

use arrow::array::UInt8BufferBuilder;

let mut builder = UInt8BufferBuilder::new(10);
builder.reserve(10);

assert!(builder.capacity() >= 20);

pub fn append(&mut self, v: T)[src]

Appends a value of type T into the builder, growing the internal buffer as needed.

Example:

use arrow::array::UInt8BufferBuilder;

let mut builder = UInt8BufferBuilder::new(10);
builder.append(42);

assert_eq!(builder.len(), 1);

pub fn append_n(&mut self, n: usize, v: T)[src]

Appends a value of type T into the builder N times, growing the internal buffer as needed.

Example:

use arrow::array::UInt8BufferBuilder;

let mut builder = UInt8BufferBuilder::new(10);
builder.append_n(10, 42);

assert_eq!(builder.len(), 10);

pub fn append_slice(&mut self, slice: &[T])[src]

Appends a slice of type T, growing the internal buffer as needed.

Example:

use arrow::array::UInt8BufferBuilder;

let mut builder = UInt8BufferBuilder::new(10);
builder.append_slice(&[42, 44, 46]);

assert_eq!(builder.len(), 3);

pub fn finish(&mut self) -> Buffer[src]

Resets this builder and returns an immutable Buffer.

Example:

use arrow::array::UInt8BufferBuilder;

let mut builder = UInt8BufferBuilder::new(10);
builder.append_slice(&[42, 44, 46]);

let buffer = builder.finish();

assert_eq!(unsafe { buffer.typed_data::<u8>() }, &[42, 44, 46]);

Trait Implementations

impl<T: Debug + ArrowNativeType> Debug for BufferBuilder<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for BufferBuilder<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for BufferBuilder<T>[src]

impl<T> Sync for BufferBuilder<T>[src]

impl<T> Unpin for BufferBuilder<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for BufferBuilder<T> where
    T: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,