pub enum QueryError {
Parse(String),
Edn(EdnError),
UnknownIdent(Keyword),
UnknownSource(String),
Unbound(String),
Arity(String),
Type(String),
Unsupported(String),
FuelExhausted,
}Expand description
Query failure.
Variants§
Parse(String)
Malformed query, rules, or pull pattern.
Edn(EdnError)
Boundary EDN failed to read.
UnknownIdent(Keyword)
An ident has no entity in the database.
UnknownSource(String)
A $… source has no bound database.
Unbound(String)
A variable was consumed before anything bound it.
Arity(String)
Wrong number of arguments.
Type(String)
Operand types not supported by an operation.
Unsupported(String)
Feature or name outside the v1 native set.
FuelExhausted
The execution fuel budget was exhausted.
Trait Implementations§
Source§impl Debug for QueryError
impl Debug for QueryError
Source§impl Display for QueryError
impl Display for QueryError
impl Eq for QueryError
Source§impl Error for QueryError
impl Error for QueryError
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()
Source§impl From<EdnError> for QueryError
impl From<EdnError> for QueryError
Source§impl PartialEq for QueryError
impl PartialEq for QueryError
impl StructuralPartialEq for QueryError
Auto Trait Implementations§
impl Freeze for QueryError
impl RefUnwindSafe for QueryError
impl Send for QueryError
impl Sync for QueryError
impl Unpin for QueryError
impl UnsafeUnpin for QueryError
impl UnwindSafe for QueryError
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