[][src]Struct arrow::array::FixedSizeBinaryBuilder

pub struct FixedSizeBinaryBuilder { /* fields omitted */ }

Implementations

impl FixedSizeBinaryBuilder[src]

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

Creates a new BinaryBuilder, capacity is the number of bytes in the values array

pub fn append_value(&mut self, value: &[u8]) -> Result<()>[src]

Appends a byte slice into the builder.

Automatically calls the append method to delimit the slice appended in as a distinct array element.

pub fn append_null(&mut self) -> Result<()>[src]

Append a null value to the array.

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

Builds the FixedSizeBinaryArray and reset this builder.

Trait Implementations

impl ArrayBuilder for FixedSizeBinaryBuilder[src]

fn as_any(&self) -> &dyn Any[src]

Returns the builder as a non-mutable Any reference.

fn as_any_mut(&mut self) -> &mut dyn Any[src]

Returns the builder as a mutable Any reference.

fn into_box_any(self: Box<Self>) -> Box<dyn Any>[src]

Returns the boxed builder as a box of Any.

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

Returns the number of array slots in the builder

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

Returns whether the number of array slots is zero

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

Builds the array and reset this builder.

impl Debug for FixedSizeBinaryBuilder[src]

Auto Trait Implementations

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>,