pub trait IntoArrow {
type A: Array;
// Required method
fn into_arrow(self) -> Self::A;
}
Expand description
Data that can be converted to an Arrow array.
Required Associated Types§
Required Methods§
Sourcefn into_arrow(self) -> Self::A
fn into_arrow(self) -> Self::A
Convert the data into an Arrow array.