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