Trait deltalake::arrow::pyarrow::ToPyArrow

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

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

Required Methods§

source

fn to_pyarrow(&self, py: Python<'_>) -> Result<Py<PyAny>, PyErr>

Implementations on Foreign Types§

source§

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

source§

fn to_pyarrow(&self, py: Python<'_>) -> Result<Py<PyAny>, PyErr>

Implementors§