pub struct IpcFieldNode {
pub length: i64,
pub null_count: i64,
}Expand description
Metadata for one Arrow column node.
Fields§
§length: i64Number of logical values in the column.
null_count: i64Number of null values.
Trait Implementations§
Source§impl Clone for IpcFieldNode
impl Clone for IpcFieldNode
Source§fn clone(&self) -> IpcFieldNode
fn clone(&self) -> IpcFieldNode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for IpcFieldNode
impl RefUnwindSafe for IpcFieldNode
impl Send for IpcFieldNode
impl Sync for IpcFieldNode
impl Unpin for IpcFieldNode
impl UnsafeUnpin for IpcFieldNode
impl UnwindSafe for IpcFieldNode
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