Enum data_query::QueryError
source · [−]pub enum QueryError {
QueryIsEmpty,
SerdeError(Error),
LexicalError(LexerError),
CannotUseIdentifierAsArrayKeyIndex(String),
UncontrolledError(String),
}
Variants
QueryIsEmpty
SerdeError(Error)
LexicalError(LexerError)
CannotUseIdentifierAsArrayKeyIndex(String)
UncontrolledError(String)
Trait Implementations
sourceimpl Debug for QueryError
impl Debug for QueryError
sourceimpl From<&'_ str> for QueryError
impl From<&'_ str> for QueryError
sourceimpl From<Error> for QueryError
impl From<Error> for QueryError
sourceimpl From<LexerError> for QueryError
impl From<LexerError> for QueryError
sourcefn from(e: LexerError) -> Self
fn from(e: LexerError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for QueryError
impl Send for QueryError
impl Sync for QueryError
impl Unpin for QueryError
impl !UnwindSafe for QueryError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more