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

Method as_any

arrow-array/src/array/mod.rs:433–435  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

431/// Ergonomics: Allow use of an ArrayRef as an `&dyn Array`
432unsafe impl Array for ArrayRef {
433 fn as_any(&self) -> &dyn Any {
434 self.as_ref().as_any()
435 }
436
437 fn to_data(&self) -> ArrayData {
438 self.as_ref().to_data()

Calls 1

as_refMethod · 0.45