pub enum ArrowError {
Show 15 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,
}
Expand description

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

Variants

NotYetImplemented(String)

Tuple Fields

0: String

Returned when functionality is not yet available.

ExternalError(Box<dyn Error + Send + Sync>)

Tuple Fields

0: Box<dyn Error + Send + Sync>

CastError(String)

Tuple Fields

0: String

MemoryError(String)

Tuple Fields

0: String

ParseError(String)

Tuple Fields

0: String

SchemaError(String)

Tuple Fields

0: String

ComputeError(String)

Tuple Fields

0: String

DivideByZero

CsvError(String)

Tuple Fields

0: String

JsonError(String)

Tuple Fields

0: String

IoError(String)

Tuple Fields

0: String

InvalidArgumentError(String)

Tuple Fields

0: String

ParquetError(String)

Tuple Fields

0: String

CDataInterface(String)

Tuple Fields

0: String

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

DictionaryKeyOverflowError

Implementations

Wraps an external error in an ArrowError.

Trait Implementations

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

The lower-level source of this error, if any. Read more

🔬 This is a nightly-only experimental API. (backtrace)

Returns a stack backtrace, if available, of where this error occurred. Read more

👎 Deprecated since 1.42.0:

use the Display impl or to_string()

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.