[][src]Struct arrow::datatypes::BooleanType

pub struct BooleanType {}

Trait Implementations

impl PrimitiveArrayOps<BooleanType> for BooleanArray[src]

impl BufferBuilderTrait<BooleanType> for BufferBuilder<BooleanType>[src]

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

Creates a builder with a fixed initial capacity.

fn append(&mut self, v: bool) -> Result<()>[src]

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

fn append_slice(&mut self, slice: &[bool]) -> Result<()>[src]

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

fn reserve(&mut self, n: usize) -> Result<()>[src]

Reserves memory for n elements of type T.

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

Reset this builder and returns an immutable Buffer.

impl ArrowPrimitiveType for BooleanType[src]

type Native = bool

Corresponding Rust native type for the primitive type.

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

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

impl<T, U> Cast<U> for T where
    U: FromCast<T>, 
[src]