Trait re_viewer::external::arrow::pyarrow::ToPyArrow

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§

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

Convert the implemented type into a Python object without consuming it.

Implementations on Foreign Types§

§

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

§

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

Implementors§