pub enum QueryError {
ParsingError(String),
EmptyQuery(),
VariableNotDefined(String),
MathError(String),
InvalidType(String),
InvalidFunctionParameters(String),
TimeIntervalError(String),
BucketQueryError(String),
RegexCompileError(String),
}
Variants§
ParsingError(String)
EmptyQuery()
VariableNotDefined(String)
MathError(String)
InvalidType(String)
InvalidFunctionParameters(String)
TimeIntervalError(String)
BucketQueryError(String)
RegexCompileError(String)
Trait Implementations§
Source§impl Debug for QueryError
impl Debug 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 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