Expand description
contains the Scalar trait object representing individual items of Arrays,
as well as concrete implementations such as BooleanScalar.
Structs§
- The
Scalarimplementation of binary (Option<Vec<u8>>). - The
Scalarimplementation of a boolean. - The
Scalarimplementation of fixed size binary ([Option<Box<[u8]>>]). - The scalar equivalent of
FixedSizeListArray. LikeFixedSizeListArray, this struct holds a dynamically-typedArray. The only difference is that this has only one element. - The representation of a single entry of a
crate::array::NullArray. - A single entry of a
crate::array::StructArray. - A single entry of a
crate::array::UnionArray. - The implementation of
Scalarfor utf8, semantically equivalent toOption<String>.
Traits§
- Trait object declaring an optional value with a
DataType. This trait is often used in APIs that accept multiple scalar types.