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

pub struct BooleanType {}

Trait Implementations

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.

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

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

impl ArrowPrimitiveType for BooleanType
[src]

type Native = bool

Corresponding Rust native type for the primitive type.

Auto Trait Implementations

impl Send for BooleanType

impl Sync for BooleanType

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]

type Error = !

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

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

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

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

The type returned in the event of a conversion error.