MCPcopy Create free account
hub / github.com/apache/arrow-rs / from

Method from

arrow-array/src/array/list_array.rs:468–471  ·  view source on GitHub ↗
(data: ArrayData)

Source from the content-addressed store, hash-verified

466
467impl<OffsetSize: OffsetSizeTrait> From<ArrayData> for GenericListArray<OffsetSize> {
468 fn from(data: ArrayData) -> Self {
469 Self::try_new_from_array_data(data)
470 .expect("Expected infallible creation of GenericListArray from ArrayDataRef failed")
471 }
472}
473
474impl<OffsetSize: OffsetSizeTrait> From<GenericListArray<OffsetSize>> for ArrayData {

Callers

nothing calls this directly

Calls 8

child_dataMethod · 0.80
lenMethod · 0.45
buffersMethod · 0.45
nullsMethod · 0.45
build_uncheckedMethod · 0.45
data_typeMethod · 0.45
cloneMethod · 0.45
valuesMethod · 0.45

Tested by

no test coverage detected