Type Definition arrow_array::array::ArrayRef
source · pub type ArrayRef = Arc<dyn Array>;
Expand description
A reference-counted reference to a generic Array
Trait Implementations§
source§impl Array for ArrayRef
impl Array for ArrayRef
Ergonomics: Allow use of an ArrayRef as an &dyn Array
source§fn slice(&self, offset: usize, length: usize) -> ArrayRef
fn slice(&self, offset: usize, length: usize) -> ArrayRef
Returns a zero-copy slice of this array with the indicated offset and length. Read more
source§fn offset(&self) -> usize
fn offset(&self) -> usize
Returns the offset into the underlying data used by this array(-slice).
Note that the underlying data can be shared by many arrays.
This defaults to
0
. Read moresource§fn nulls(&self) -> Option<&NullBuffer>
fn nulls(&self) -> Option<&NullBuffer>
Returns the null buffers of this array if any
source§fn is_null(&self, index: usize) -> bool
fn is_null(&self, index: usize) -> bool
Returns whether the element at
index
is null.
When using this function on a slice, the index is relative to the slice. Read moresource§fn is_valid(&self, index: usize) -> bool
fn is_valid(&self, index: usize) -> bool
Returns whether the element at
index
is not null.
When using this function on a slice, the index is relative to the slice. Read moresource§fn null_count(&self) -> usize
fn null_count(&self) -> usize
Returns the total number of null values in this array. Read more
source§fn get_buffer_memory_size(&self) -> usize
fn get_buffer_memory_size(&self) -> usize
Returns the total number of bytes of memory pointed to by this array.
The buffers store bytes in the Arrow memory format, and include the data as well as the validity map.
source§fn get_array_memory_size(&self) -> usize
fn get_array_memory_size(&self) -> usize
Returns the total number of bytes of memory occupied physically by this array.
This value will always be greater than returned by
get_buffer_memory_size()
and
includes the overhead of the data structures that contain the pointers to the various buffers.source§impl AsArray for ArrayRef
impl AsArray for ArrayRef
source§fn as_boolean_opt(&self) -> Option<&BooleanArray>
fn as_boolean_opt(&self) -> Option<&BooleanArray>
Downcast this to a
BooleanArray
returning None
if not possiblesource§fn as_primitive_opt<T: ArrowPrimitiveType>(&self) -> Option<&PrimitiveArray<T>>
fn as_primitive_opt<T: ArrowPrimitiveType>(&self) -> Option<&PrimitiveArray<T>>
Downcast this to a
PrimitiveArray
returning None
if not possiblesource§fn as_bytes_opt<T: ByteArrayType>(&self) -> Option<&GenericByteArray<T>>
fn as_bytes_opt<T: ByteArrayType>(&self) -> Option<&GenericByteArray<T>>
Downcast this to a
GenericByteArray
returning None
if not possiblesource§fn as_struct_opt(&self) -> Option<&StructArray>
fn as_struct_opt(&self) -> Option<&StructArray>
Downcast this to a
StructArray
returning None
if not possiblesource§fn as_list_opt<O: OffsetSizeTrait>(&self) -> Option<&GenericListArray<O>>
fn as_list_opt<O: OffsetSizeTrait>(&self) -> Option<&GenericListArray<O>>
Downcast this to a
GenericListArray
returning None
if not possiblesource§fn as_fixed_size_list_opt(&self) -> Option<&FixedSizeListArray>
fn as_fixed_size_list_opt(&self) -> Option<&FixedSizeListArray>
Downcast this to a
FixedSizeListArray
returning None
if not possiblesource§fn as_map_opt(&self) -> Option<&MapArray>
fn as_map_opt(&self) -> Option<&MapArray>
Downcast this to a
MapArray
returning None
if not possiblesource§fn as_dictionary_opt<K: ArrowDictionaryKeyType>(
&self
) -> Option<&DictionaryArray<K>>
fn as_dictionary_opt<K: ArrowDictionaryKeyType>( &self ) -> Option<&DictionaryArray<K>>
Downcast this to a
DictionaryArray
returning None
if not possiblesource§fn as_boolean(&self) -> &BooleanArray
fn as_boolean(&self) -> &BooleanArray
Downcast this to a
BooleanArray
panicking if not possiblesource§fn as_primitive<T: ArrowPrimitiveType>(&self) -> &PrimitiveArray<T>
fn as_primitive<T: ArrowPrimitiveType>(&self) -> &PrimitiveArray<T>
Downcast this to a
PrimitiveArray
panicking if not possiblesource§fn as_bytes<T: ByteArrayType>(&self) -> &GenericByteArray<T>
fn as_bytes<T: ByteArrayType>(&self) -> &GenericByteArray<T>
Downcast this to a
GenericByteArray
panicking if not possiblesource§fn as_string_opt<O: OffsetSizeTrait>(&self) -> Option<&GenericStringArray<O>>
fn as_string_opt<O: OffsetSizeTrait>(&self) -> Option<&GenericStringArray<O>>
Downcast this to a
GenericStringArray
returning None
if not possiblesource§fn as_string<O: OffsetSizeTrait>(&self) -> &GenericStringArray<O>
fn as_string<O: OffsetSizeTrait>(&self) -> &GenericStringArray<O>
Downcast this to a
GenericStringArray
panicking if not possiblesource§fn as_binary_opt<O: OffsetSizeTrait>(&self) -> Option<&GenericBinaryArray<O>>
fn as_binary_opt<O: OffsetSizeTrait>(&self) -> Option<&GenericBinaryArray<O>>
Downcast this to a
GenericBinaryArray
returning None
if not possiblesource§fn as_binary<O: OffsetSizeTrait>(&self) -> &GenericBinaryArray<O>
fn as_binary<O: OffsetSizeTrait>(&self) -> &GenericBinaryArray<O>
Downcast this to a
GenericBinaryArray
panicking if not possiblesource§fn as_struct(&self) -> &StructArray
fn as_struct(&self) -> &StructArray
Downcast this to a
StructArray
panicking if not possiblesource§fn as_list<O: OffsetSizeTrait>(&self) -> &GenericListArray<O>
fn as_list<O: OffsetSizeTrait>(&self) -> &GenericListArray<O>
Downcast this to a
GenericListArray
panicking if not possiblesource§fn as_fixed_size_list(&self) -> &FixedSizeListArray
fn as_fixed_size_list(&self) -> &FixedSizeListArray
Downcast this to a
FixedSizeListArray
panicking if not possiblesource§fn as_dictionary<K: ArrowDictionaryKeyType>(&self) -> &DictionaryArray<K>
fn as_dictionary<K: ArrowDictionaryKeyType>(&self) -> &DictionaryArray<K>
Downcast this to a
DictionaryArray
panicking if not possible