pub struct Node {
pub length: u64,
pub null_count: u64,
}Expand description
One array in a batch, in the flattened order the schema puts them in.
This is the same pair Arrow IPC calls a field node, and it is here for the same reason: a column’s length and null count are not derivable from its buffers, so somebody has to say them out loud.
Fields§
§length: u64How many slots the array has.
null_count: u64How many of those slots are null.
Implementations§
Trait Implementations§
impl Copy for Node
impl Eq for Node
impl StructuralPartialEq for Node
Auto Trait Implementations§
impl Freeze for Node
impl RefUnwindSafe for Node
impl Send for Node
impl Sync for Node
impl Unpin for Node
impl UnsafeUnpin for Node
impl UnwindSafe for Node
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more