Type Alias arrow_array::types::LargeBinaryType
source · pub type LargeBinaryType = GenericBinaryType<i64>;
Expand description
An arrow binary array with i64 offsets
Aliased Type§
struct LargeBinaryType { /* private fields */ }
Trait Implementations§
source§impl<O: OffsetSizeTrait> ByteArrayType for GenericBinaryType<O>
impl<O: OffsetSizeTrait> ByteArrayType for GenericBinaryType<O>
§type Native = [u8]
type Native = [u8]
Type for representing its equivalent rust type i.e
Utf8Array will have native type has &str
BinaryArray will have type as u8
source§fn validate(
offsets: &OffsetBuffer<Self::Offset>,
values: &Buffer
) -> Result<(), ArrowError>
fn validate( offsets: &OffsetBuffer<Self::Offset>, values: &Buffer ) -> Result<(), ArrowError>
Verifies that every consecutive pair of
offsets
denotes a valid slice of values