Trait arrow::pyarrow::ToPyArrow

source ·
pub trait ToPyArrow {
    // Required method
    fn to_pyarrow(&self, py: Python<'_>) -> PyResult<PyObject>;
}
Expand description

Create a new PyArrow object from a arrow-rs type.

Required Methods§

source

fn to_pyarrow(&self, py: Python<'_>) -> PyResult<PyObject>

Implementations on Foreign Types§

source§

impl<T: ToPyArrow> ToPyArrow for Vec<T>

source§

fn to_pyarrow(&self, py: Python<'_>) -> PyResult<PyObject>

Implementors§