Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
ToPyArrow in datafusion::common::arrow::pyarrow - Rust
[go: Go Back, main page]

Trait 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>

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

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§