[][src]Struct arrow::ipc::gen::Message::FieldNode

#[repr(C, align(8))]pub struct FieldNode { /* fields omitted */ }

Data structures for describing a table row batch (a collection of equal-length Arrow arrays) Metadata about a field at some level of a nested type tree (but not its children).

For example, a List with values [[1, 2, 3], null, [4], [5, 6], null] would have {length: 5, null_count: 2} for its List node, and {length: 6, null_count: 0} for its Int16 node, as separate FieldNode structs

Implementations

impl FieldNode[src]

pub fn new<'a>(_length: i64, _null_count: i64) -> Self[src]

pub fn length<'a>(&'a self) -> i64[src]

The number of value slots in the Arrow array at this level of a nested tree

pub fn null_count<'a>(&'a self) -> i64[src]

The number of observed nulls. Fields with null_count == 0 may choose not to write their physical validity bitmap out as a materialized buffer, instead setting the length of the bitmap buffer to 0.

Trait Implementations

impl Clone for FieldNode[src]

impl Copy for FieldNode[src]

impl Debug for FieldNode[src]

impl<'a> Follow<'a> for FieldNode[src]

type Inner = &'a FieldNode

impl<'a> Follow<'a> for &'a FieldNode[src]

type Inner = &'a FieldNode

impl PartialEq<FieldNode> for FieldNode[src]

impl<'b> Push for FieldNode[src]

type Output = FieldNode

impl<'b> Push for &'b FieldNode[src]

type Output = FieldNode

impl SafeSliceAccess for FieldNode[src]

impl StructuralPartialEq for FieldNode[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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