pub trait PyArrowConvert: Sized {
    // Required methods
    fn from_pyarrow(value: &PyAny) -> PyResult<Self>;
    fn to_pyarrow(&self, py: Python<'_>) -> PyResult<PyObject>;
}

Required Methods§

source

fn from_pyarrow(value: &PyAny) -> PyResult<Self>

source

fn to_pyarrow(&self, py: Python<'_>) -> PyResult<PyObject>

Implementations on Foreign Types§

source§

impl<T: PyArrowConvert> PyArrowConvert for Vec<T>

source§

fn from_pyarrow(value: &PyAny) -> PyResult<Self>

source§

fn to_pyarrow(&self, py: Python<'_>) -> PyResult<PyObject>

Implementors§