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§
Sourcefn to_pyarrow(&self, py: Python<'_>) -> PyResult<PyObject>
fn to_pyarrow(&self, py: Python<'_>) -> PyResult<PyObject>
Convert the implemented type into a Python object without consuming it.