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<Int16>
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
0: [u8; 16]
The number of value slots in the Arrow array at this level of a nested tree
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.
pos
in the verifier’s buffer.
Should not need to be called directly.clone_to_uninit
)clone_to_uninit
)Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreself
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreT
in a tonic::Request
self
and passes that borrow into the pipe function. Read moreself
and passes that borrow into the pipe function. Read moreself
, then passes self.as_ref()
into the pipe function.self
, then passes self.as_mut()
into the pipe
function.self
, then passes self.deref()
into the pipe function.Borrow<B>
of a value. Read moreBorrowMut<B>
of a value. Read moreAsRef<R>
view of a value. Read moreAsMut<R>
view of a value. Read moreDeref::Target
of a value. Read moreDeref::Target
of a value. Read more.tap()
only in debug builds, and is erased in release builds..tap_mut()
only in debug builds, and is erased in release
builds..tap_borrow()
only in debug builds, and is erased in release
builds..tap_borrow_mut()
only in debug builds, and is erased in release
builds..tap_ref()
only in debug builds, and is erased in release
builds..tap_ref_mut()
only in debug builds, and is erased in release
builds..tap_deref()
only in debug builds, and is erased in release
builds.