Enum partiql_eval::error::PlanningError
source · #[non_exhaustive]pub enum PlanningError {
NotYetImplemented(String),
IllegalState(String),
}
Expand description
An error that can happen during partiql_logical::LogicalPlan
to [eval::EvalPlan
] creation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
NotYetImplemented(String)
Feature has not yet been implemented.
IllegalState(String)
Internal error that was not due to user input or API violation.
Trait Implementations§
source§impl Clone for PlanningError
impl Clone for PlanningError
source§fn clone(&self) -> PlanningError
fn clone(&self) -> PlanningError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PlanningError
impl Debug for PlanningError
source§impl Display for PlanningError
impl Display for PlanningError
source§impl Error for PlanningError
impl Error for PlanningError
1.30.0 · source§fn 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 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl Hash for PlanningError
impl Hash for PlanningError
source§impl PartialEq<PlanningError> for PlanningError
impl PartialEq<PlanningError> for PlanningError
source§fn eq(&self, other: &PlanningError) -> bool
fn eq(&self, other: &PlanningError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for PlanningError
impl StructuralEq for PlanningError
impl StructuralPartialEq for PlanningError
Auto Trait Implementations§
impl RefUnwindSafe for PlanningError
impl Send for PlanningError
impl Sync for PlanningError
impl Unpin for PlanningError
impl UnwindSafe for PlanningError
Blanket Implementations§
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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.