Enum polars_core::error::PolarsError [−][src]
pub enum PolarsError {
Show 20 variants
PolarsArrowError(PolarsError),
ArrowError(ArrowError),
InvalidOperation(Cow<'static, str>),
DataTypeMisMatch(Cow<'static, str>),
NotFound(String),
ShapeMisMatch(Cow<'static, str>),
ComputeError(Cow<'static, str>),
OutOfBounds(Cow<'static, str>),
NoSlice,
NoData(Cow<'static, str>),
ValueError(Cow<'static, str>),
MemoryNotAligned,
RandError(String),
HasNullValues(Cow<'static, str>),
UnknownSchema(Cow<'static, str>),
Various(Error),
Io(Error),
Regex(Error),
Duplicate(Cow<'static, str>),
ImplementationError,
}
Variants
PolarsArrowError(PolarsError)
Tuple Fields of PolarsArrowError
0: PolarsError
ArrowError(ArrowError)
Tuple Fields of ArrowError
0: ArrowError
NotFound(String)
Tuple Fields of NotFound
0: String
RandError(String)
This is supported on crate feature
random
only.Tuple Fields of RandError
0: String
Various(Error)
Tuple Fields of Various
0: Error
Io(Error)
Tuple Fields of Io
0: Error
Regex(Error)
This is supported on crate features
strings
or temporal
only.Tuple Fields of Regex
0: Error
Trait Implementations
Performs the conversion.
Performs the conversion.