Enum PolarsError
pub enum PolarsError {
Show 15 variants
ColumnNotFound(ErrString),
ComputeError(ErrString),
Duplicate(ErrString),
InvalidOperation(ErrString),
IO {
error: Arc<Error>,
msg: Option<ErrString>,
},
NoData(ErrString),
OutOfBounds(ErrString),
SchemaFieldNotFound(ErrString),
SchemaMismatch(ErrString),
ShapeMismatch(ErrString),
SQLInterface(ErrString),
SQLSyntax(ErrString),
StringCacheMismatch(ErrString),
StructFieldNotFound(ErrString),
Context {
error: Box<PolarsError>,
msg: ErrString,
},
}
Variants§
ColumnNotFound(ErrString)
ComputeError(ErrString)
Duplicate(ErrString)
InvalidOperation(ErrString)
IO
NoData(ErrString)
OutOfBounds(ErrString)
SchemaFieldNotFound(ErrString)
SchemaMismatch(ErrString)
ShapeMismatch(ErrString)
SQLInterface(ErrString)
SQLSyntax(ErrString)
StringCacheMismatch(ErrString)
StructFieldNotFound(ErrString)
Context
Implementations§
§impl PolarsError
impl PolarsError
pub fn context_trace(self) -> PolarsError
pub fn wrap_msg<F>(&self, func: F) -> PolarsError
pub fn context(self, msg: ErrString) -> PolarsError
Trait Implementations§
§impl Debug for PolarsError
impl Debug for PolarsError
§impl Display for PolarsError
impl Display for PolarsError
§impl Error for PolarsError
impl Error for PolarsError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
§impl From<Error> for PolarsError
impl From<Error> for PolarsError
§fn from(value: Error) -> PolarsError
fn from(value: Error) -> PolarsError
Converts to this type from the input type.
§impl From<Error> for PolarsError
Available on crate feature regex
only.
impl From<Error> for PolarsError
Available on crate feature
regex
only.§fn from(err: Error) -> PolarsError
fn from(err: Error) -> PolarsError
Converts to this type from the input type.
§impl From<Error> for PolarsError
Available on crate feature object_store
only.
impl From<Error> for PolarsError
Available on crate feature
object_store
only.§fn from(err: Error) -> PolarsError
fn from(err: Error) -> PolarsError
Converts to this type from the input type.
§impl From<Error> for PolarsError
Available on crate feature arrow-format
only.
impl From<Error> for PolarsError
Available on crate feature
arrow-format
only.§fn from(err: Error) -> PolarsError
fn from(err: Error) -> PolarsError
Converts to this type from the input type.
§impl From<ParquetError> for PolarsError
impl From<ParquetError> for PolarsError
§fn from(e: ParquetError) -> PolarsError
fn from(e: ParquetError) -> PolarsError
Converts to this type from the input type.
§impl From<PolarsError> for ParquetError
impl From<PolarsError> for ParquetError
§fn from(e: PolarsError) -> ParquetError
fn from(e: PolarsError) -> ParquetError
Converts to this type from the input type.
§impl From<TryReserveError> for PolarsError
impl From<TryReserveError> for PolarsError
§fn from(value: TryReserveError) -> PolarsError
fn from(value: TryReserveError) -> PolarsError
Converts to this type from the input type.
§impl From<Utf8Error> for PolarsError
impl From<Utf8Error> for PolarsError
§fn from(value: Utf8Error) -> PolarsError
fn from(value: Utf8Error) -> PolarsError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PolarsError
impl !RefUnwindSafe for PolarsError
impl Send for PolarsError
impl Sync for PolarsError
impl Unpin for PolarsError
impl !UnwindSafe for PolarsError
Blanket Implementations§
§impl<T> AsErrorSource for Twhere
T: Error + 'static,
impl<T> AsErrorSource for Twhere
T: Error + 'static,
§fn as_error_source(&self) -> &(dyn Error + 'static)
fn as_error_source(&self) -> &(dyn Error + 'static)
For maximum effectiveness, this needs to be called as a method
to benefit from Rust’s automatic dereferencing of method
receivers.
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of [
ToCompactString::to_compact_string()
] Read more§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a [
CompactString
]. Read more