pub trait ArrowArrayDowncastRef<'a>: 'a {
// Required method
fn downcast_array_ref<T: Array + 'static>(self) -> Option<&'a T>;
}
Expand description
Downcast an arrow array to another array, without having to go via Any
.
Required Methods§
sourcefn downcast_array_ref<T: Array + 'static>(self) -> Option<&'a T>
fn downcast_array_ref<T: Array + 'static>(self) -> Option<&'a T>
Downcast an arrow array to another array, without having to go via Any
.
Object Safety§
This trait is not object safe.