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

Required Methods§

Implementations on Foreign Types§

Implementors§