[][src]Struct arrow::builder::PrimitiveArrayBuilder

pub struct PrimitiveArrayBuilder<T> where
    T: ArrowPrimitiveType
{ /* fields omitted */ }

Array builder for fixed-width primitive types

Methods

impl PrimitiveArrayBuilder<bool>
[src]

Creates a new primitive array builder

Returns the capacity of this builder measured in slots of type T

Pushes a value of type T into the builder

Pushes a null slot into the builder

Pushes an Option<T> into the builder

Pushes a slice of type T into the builder

impl PrimitiveArrayBuilder<u8>
[src]

Creates a new primitive array builder

Returns the capacity of this builder measured in slots of type T

Pushes a value of type T into the builder

Pushes a null slot into the builder

Pushes an Option<T> into the builder

Pushes a slice of type T into the builder

impl PrimitiveArrayBuilder<u16>
[src]

Creates a new primitive array builder

Returns the capacity of this builder measured in slots of type T

Pushes a value of type T into the builder

Pushes a null slot into the builder

Pushes an Option<T> into the builder

Pushes a slice of type T into the builder

impl PrimitiveArrayBuilder<u32>
[src]

Creates a new primitive array builder

Returns the capacity of this builder measured in slots of type T

Pushes a value of type T into the builder

Pushes a null slot into the builder

Pushes an Option<T> into the builder

Pushes a slice of type T into the builder

impl PrimitiveArrayBuilder<u64>
[src]

Creates a new primitive array builder

Returns the capacity of this builder measured in slots of type T

Pushes a value of type T into the builder

Pushes a null slot into the builder

Pushes an Option<T> into the builder

Pushes a slice of type T into the builder

impl PrimitiveArrayBuilder<i8>
[src]

Creates a new primitive array builder

Returns the capacity of this builder measured in slots of type T

Pushes a value of type T into the builder

Pushes a null slot into the builder

Pushes an Option<T> into the builder

Pushes a slice of type T into the builder

impl PrimitiveArrayBuilder<i16>
[src]

Creates a new primitive array builder

Returns the capacity of this builder measured in slots of type T

Pushes a value of type T into the builder

Pushes a null slot into the builder

Pushes an Option<T> into the builder

Pushes a slice of type T into the builder

impl PrimitiveArrayBuilder<i32>
[src]

Creates a new primitive array builder

Returns the capacity of this builder measured in slots of type T

Pushes a value of type T into the builder

Pushes a null slot into the builder

Pushes an Option<T> into the builder

Pushes a slice of type T into the builder

impl PrimitiveArrayBuilder<i64>
[src]

Creates a new primitive array builder

Returns the capacity of this builder measured in slots of type T

Pushes a value of type T into the builder

Pushes a null slot into the builder

Pushes an Option<T> into the builder

Pushes a slice of type T into the builder

impl PrimitiveArrayBuilder<f32>
[src]

Creates a new primitive array builder

Returns the capacity of this builder measured in slots of type T

Pushes a value of type T into the builder

Pushes a null slot into the builder

Pushes an Option<T> into the builder

Pushes a slice of type T into the builder

impl PrimitiveArrayBuilder<f64>
[src]

Creates a new primitive array builder

Returns the capacity of this builder measured in slots of type T

Pushes a value of type T into the builder

Pushes a null slot into the builder

Pushes an Option<T> into the builder

Pushes a slice of type T into the builder

Trait Implementations

impl ArrayBuilder for PrimitiveArrayBuilder<bool>
[src]

The type of array that this builder creates

Returns the builder as an owned Any type so that it can be downcast to a specific implementation before calling it's finish method

Returns the number of array slots in the builder

Builds the PrimitiveArray

impl ArrayBuilder for PrimitiveArrayBuilder<u8>
[src]

The type of array that this builder creates

Returns the builder as an owned Any type so that it can be downcast to a specific implementation before calling it's finish method

Returns the number of array slots in the builder

Builds the PrimitiveArray

impl ArrayBuilder for PrimitiveArrayBuilder<u16>
[src]

The type of array that this builder creates

Returns the builder as an owned Any type so that it can be downcast to a specific implementation before calling it's finish method

Returns the number of array slots in the builder

Builds the PrimitiveArray

impl ArrayBuilder for PrimitiveArrayBuilder<u32>
[src]

The type of array that this builder creates

Returns the builder as an owned Any type so that it can be downcast to a specific implementation before calling it's finish method

Returns the number of array slots in the builder

Builds the PrimitiveArray

impl ArrayBuilder for PrimitiveArrayBuilder<u64>
[src]

The type of array that this builder creates

Returns the builder as an owned Any type so that it can be downcast to a specific implementation before calling it's finish method

Returns the number of array slots in the builder

Builds the PrimitiveArray

impl ArrayBuilder for PrimitiveArrayBuilder<i8>
[src]

The type of array that this builder creates

Returns the builder as an owned Any type so that it can be downcast to a specific implementation before calling it's finish method

Returns the number of array slots in the builder

Builds the PrimitiveArray

impl ArrayBuilder for PrimitiveArrayBuilder<i16>
[src]

The type of array that this builder creates

Returns the builder as an owned Any type so that it can be downcast to a specific implementation before calling it's finish method

Returns the number of array slots in the builder

Builds the PrimitiveArray

impl ArrayBuilder for PrimitiveArrayBuilder<i32>
[src]

The type of array that this builder creates

Returns the builder as an owned Any type so that it can be downcast to a specific implementation before calling it's finish method

Returns the number of array slots in the builder

Builds the PrimitiveArray

impl ArrayBuilder for PrimitiveArrayBuilder<i64>
[src]

The type of array that this builder creates

Returns the builder as an owned Any type so that it can be downcast to a specific implementation before calling it's finish method

Returns the number of array slots in the builder

Builds the PrimitiveArray

impl ArrayBuilder for PrimitiveArrayBuilder<f32>
[src]

The type of array that this builder creates

Returns the builder as an owned Any type so that it can be downcast to a specific implementation before calling it's finish method

Returns the number of array slots in the builder

Builds the PrimitiveArray

impl ArrayBuilder for PrimitiveArrayBuilder<f64>
[src]

The type of array that this builder creates

Returns the builder as an owned Any type so that it can be downcast to a specific implementation before calling it's finish method

Returns the number of array slots in the builder

Builds the PrimitiveArray

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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