PyArrowResult

Type Alias PyArrowResult 

Source
pub type PyArrowResult<T> = Result<T, PyArrowError>;
Expand description

A type wrapper around Result<T, PyArrowError>.

Aliased Type§

pub enum PyArrowResult<T> {
    Ok(T),
    Err(PyArrowError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(PyArrowError)

Contains the error value