Expand description
Defines helper functions for downcasting dyn Array
to concrete types
Traits§
- AsArray
- An extension trait for
dyn Array
that provides ergonomic downcasting
Functions§
- as_
boolean_ array - Force downcast of an
Array
, such as anArrayRef
toBooleanArray
, panicking on failure. - as_
dictionary_ array - Force downcast of an
Array
, such as anArrayRef
toDictionaryArray<T>
, panic’ing on failure. - as_
fixed_ size_ list_ array - Force downcast of an
Array
, such as anArrayRef
toFixedSizeListArray
, panicking on failure. - as_
generic_ binary_ array - Force downcast of an
Array
, such as anArrayRef
toGenericBinaryArray<S>
, panicking on failure. - as_
generic_ list_ array - Force downcast of an
Array
, such as anArrayRef
toGenericListArray<T>
, panicking on failure. - as_
large_ list_ array - Force downcast of an
Array
, such as anArrayRef
toLargeListArray
, panicking on failure. - as_
largestring_ array - Force downcast of an
Array
, such as anArrayRef
toLargeStringArray
, panicking on failure. - as_
list_ array - Force downcast of an
Array
, such as anArrayRef
toListArray
, panicking on failure. - as_
map_ array - Force downcast of an
Array
, such as anArrayRef
toMapArray
, panicking on failure. - as_
null_ array - Force downcast of an
Array
, such as anArrayRef
toNullArray
, panicking on failure. - as_
primitive_ array - Force downcast of an
Array
, such as anArrayRef
, toPrimitiveArray<T>
, panic’ing on failure. - as_
run_ array - Force downcast of an
Array
, such as anArrayRef
toRunArray<T>
, panic’ing on failure. - as_
string_ array - Force downcast of an
Array
, such as anArrayRef
toStringArray
, panicking on failure. - as_
struct_ array - Force downcast of an
Array
, such as anArrayRef
toStructArray
, panicking on failure. - as_
union_ array - Force downcast of an
Array
, such as anArrayRef
toUnionArray
, panicking on failure. - downcast_
array - Downcasts a
dyn Array
to a concrete type