Enum arrow_schema::ArrowError
source · 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.
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
sourceimpl ArrowError
impl ArrowError
Trait Implementations
sourceimpl Debug for ArrowError
impl Debug for ArrowError
sourceimpl Display for ArrowError
impl Display for ArrowError
sourceimpl Error for ArrowError
impl Error for ArrowError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl From<Error> for ArrowError
impl From<Error> for ArrowError
sourceimpl From<FromUtf8Error> for ArrowError
impl From<FromUtf8Error> for ArrowError
sourcefn from(error: FromUtf8Error) -> Self
fn from(error: FromUtf8Error) -> Self
Converts to this type from the input type.
sourceimpl<W: Write> From<IntoInnerError<W>> for ArrowError
impl<W: Write> From<IntoInnerError<W>> for ArrowError
sourcefn from(error: IntoInnerError<W>) -> Self
fn from(error: IntoInnerError<W>) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for ArrowError
impl Send for ArrowError
impl Sync for ArrowError
impl Unpin for ArrowError
impl !UnwindSafe for ArrowError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more