pub trait ToPyArrow {
// Required method
fn to_pyarrow<'py>(
&self,
py: Python<'py>,
) -> Result<Bound<'py, PyAny>, PyErr>;
}Expand description
Create a new PyArrow object from a arrow-rs type.
pub trait ToPyArrow {
// Required method
fn to_pyarrow<'py>(
&self,
py: Python<'py>,
) -> Result<Bound<'py, PyAny>, PyErr>;
}Create a new PyArrow object from a arrow-rs type.