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

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)

Returned when functionality is not yet available.

Tuple Fields of NotYetImplemented

0: String
ExternalError(Box<dyn Error + Send + Sync>)

Tuple Fields of ExternalError

0: Box<dyn Error + Send + Sync>
CastError(String)

Tuple Fields of CastError

0: String
MemoryError(String)

Tuple Fields of MemoryError

0: String
ParseError(String)

Tuple Fields of ParseError

0: String
SchemaError(String)

Tuple Fields of SchemaError

0: String
ComputeError(String)

Tuple Fields of ComputeError

0: String
DivideByZero
CsvError(String)

Tuple Fields of CsvError

0: String
JsonError(String)

Tuple Fields of JsonError

0: String
IoError(String)

Tuple Fields of IoError

0: String
InvalidArgumentError(String)

Tuple Fields of InvalidArgumentError

0: String
ParquetError(String)

Tuple Fields of ParquetError

0: String
CDataInterface(String)

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

Tuple Fields of CDataInterface

0: String
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.