Struct google_cloud_bigquery::storage::array::MapArray
pub struct MapArray { /* private fields */ }Expand description
An array of key-value maps
Keys should always be non-null, but values can be null.
MapArray is physically a ListArray of key values pairs stored as an entries
StructArray with 2 child fields.
See MapBuilder for how to construct a MapArray
Implementations§
§impl MapArray
impl MapArray
pub fn try_new(
field: Arc<Field, Global>,
offsets: OffsetBuffer<i32>,
entries: StructArray,
nulls: Option<NullBuffer>,
ordered: bool
) -> Result<MapArray, ArrowError>
pub fn try_new( field: Arc<Field, Global>, offsets: OffsetBuffer<i32>, entries: StructArray, nulls: Option<NullBuffer>, ordered: bool ) -> Result<MapArray, ArrowError>
Create a new MapArray from the provided parts
See MapBuilder for a higher-level interface
to construct a MapArray
Errors
Errors if
offsets.len() - 1 != nulls.len()offsets.last() > entries.len()field.is_nullable()entries.null_count() != 0entries.columns().len() != 2field.data_type() != entries.data_type()
pub fn new(
field: Arc<Field, Global>,
offsets: OffsetBuffer<i32>,
entries: StructArray,
nulls: Option<NullBuffer>,
ordered: bool
) -> MapArray
pub fn new( field: Arc<Field, Global>, offsets: OffsetBuffer<i32>, entries: StructArray, nulls: Option<NullBuffer>, ordered: bool ) -> MapArray
Create a new MapArray from the provided parts
See MapBuilder for a higher-level interface
to construct a MapArray
Panics
Panics if Self::try_new returns an error
pub fn into_parts(
self
) -> (Arc<Field, Global>, OffsetBuffer<i32>, StructArray, Option<NullBuffer>, bool)
pub fn into_parts( self ) -> (Arc<Field, Global>, OffsetBuffer<i32>, StructArray, Option<NullBuffer>, bool)
Deconstruct this array into its constituent parts
pub fn offsets(&self) -> &OffsetBuffer<i32>
pub fn offsets(&self) -> &OffsetBuffer<i32>
Returns a reference to the offsets of this map
Unlike Self::value_offsets this returns the OffsetBuffer
allowing for zero-copy cloning
pub fn entries(&self) -> &StructArray
pub fn entries(&self) -> &StructArray
Returns a reference to the StructArray entries of this map
pub fn value_type(&self) -> &DataType
pub fn value_type(&self) -> &DataType
Returns the data type of the map’s values.
pub unsafe fn value_unchecked(&self, i: usize) -> StructArray
pub unsafe fn value_unchecked(&self, i: usize) -> StructArray
Returns ith value of this map array.
Safety
Caller must ensure that the index is within the array bounds
pub fn value(&self, i: usize) -> StructArray
pub fn value(&self, i: usize) -> StructArray
Returns ith value of this map array.
This is a StructArray containing two fields
pub fn value_offsets(&self) -> &[i32]
pub fn value_offsets(&self) -> &[i32]
Returns the offset values in the offsets buffer
pub fn value_length(&self, i: usize) -> i32
pub fn value_length(&self, i: usize) -> i32
Returns the length for value at index i.
§impl MapArray
impl MapArray
pub fn new_from_strings<'a>(
keys: impl Iterator<Item = &'a str>,
values: &dyn Array,
entry_offsets: &[u32]
) -> Result<MapArray, ArrowError>
pub fn new_from_strings<'a>( keys: impl Iterator<Item = &'a str>, values: &dyn Array, entry_offsets: &[u32] ) -> Result<MapArray, ArrowError>
Creates map array from provided keys, values and entry_offsets.
Trait Implementations§
§impl Array for MapArray
impl Array for MapArray
§fn slice(&self, offset: usize, length: usize) -> Arc<dyn Array, Global>
fn slice(&self, offset: usize, length: usize) -> Arc<dyn Array, Global>
§fn offset(&self) -> usize
fn offset(&self) -> usize
0. Read more§fn nulls(&self) -> Option<&NullBuffer>
fn nulls(&self) -> Option<&NullBuffer>
§fn get_buffer_memory_size(&self) -> usize
fn get_buffer_memory_size(&self) -> usize
§fn get_array_memory_size(&self) -> usize
fn get_array_memory_size(&self) -> usize
get_buffer_memory_size() and
includes the overhead of the data structures that contain the pointers to the various buffers.§fn is_null(&self, index: usize) -> bool
fn is_null(&self, index: usize) -> bool
index is null.
When using this function on a slice, the index is relative to the slice. Read more§fn is_valid(&self, index: usize) -> bool
fn is_valid(&self, index: usize) -> bool
index is not null.
When using this function on a slice, the index is relative to the slice. Read more§fn null_count(&self) -> usize
fn null_count(&self) -> usize
§impl<'a> ArrayAccessor for &'a MapArray
impl<'a> ArrayAccessor for &'a MapArray
§type Item = StructArray
type Item = StructArray
§fn value(&self, index: usize) -> <&'a MapArray as ArrayAccessor>::Item
fn value(&self, index: usize) -> <&'a MapArray as ArrayAccessor>::Item
i Read more§unsafe fn value_unchecked(
&self,
index: usize
) -> <&'a MapArray as ArrayAccessor>::Item
unsafe fn value_unchecked( &self, index: usize ) -> <&'a MapArray as ArrayAccessor>::Item
i Read more§impl From<MapArray> for GenericListArray<i32>
impl From<MapArray> for GenericListArray<i32>
§fn from(value: MapArray) -> GenericListArray<i32>
fn from(value: MapArray) -> GenericListArray<i32>
Auto Trait Implementations§
impl !RefUnwindSafe for MapArray
impl Send for MapArray
impl Sync for MapArray
impl Unpin for MapArray
impl !UnwindSafe for MapArray
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a tonic::Request