Enum arrow::error::ArrowError[][src]

pub enum ArrowError {
Show variants NotYetImplemented(String), ExternalError(Box<dyn Error + Send + Sync>), CastError(String), MemoryError(String), ParseError(String), SchemaError(String), ComputeError(String), DivideByZero, CsvError(String), JsonError(String), IoError(String), InvalidArgumentError(String), ParquetError(String), CDataInterface(String), DictionaryKeyOverflowError,
}

Many different operations in the arrow crate return this error type.

Variants

NotYetImplemented(String)

Returned when functionality is not yet available.

ExternalError(Box<dyn Error + Send + Sync>)
CastError(String)
MemoryError(String)
ParseError(String)
SchemaError(String)
ComputeError(String)
DivideByZero
CsvError(String)
JsonError(String)
IoError(String)
InvalidArgumentError(String)
ParquetError(String)
CDataInterface(String)

Error during import or export to/from the C Data Interface

DictionaryKeyOverflowError

Implementations

impl ArrowError[src]

pub fn from_external_error(error: Box<dyn Error + Send + Sync>) -> Self[src]

Wraps an external error in an ArrowError.

Trait Implementations

impl Debug for ArrowError[src]

impl Display for ArrowError[src]

impl Error for ArrowError[src]

impl From<Error> for ArrowError[src]

impl From<Error> for ArrowError[src]

impl From<Error> for ArrowError[src]

impl From<FromUtf8Error> for ArrowError[src]

impl<W: Write> From<IntoInnerError<W>> for ArrowError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,