pub enum GraphQueryError {
ExecuteError(NonthrowingFunctionError),
ResponseError(ErrorCode, Option<Vec<u8>>),
DataSetError(DataSetError),
}
Variants§
ExecuteError(NonthrowingFunctionError)
ResponseError(ErrorCode, Option<Vec<u8>>)
DataSetError(DataSetError)
Trait Implementations§
source§impl Debug for GraphQueryError
impl Debug for GraphQueryError
source§impl Display for GraphQueryError
impl Display for GraphQueryError
source§impl Error for GraphQueryError
impl Error for GraphQueryError
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()
source§impl From<GraphQueryError> for SingleConnSessionError
impl From<GraphQueryError> for SingleConnSessionError
source§fn from(value: GraphQueryError) -> Self
fn from(value: GraphQueryError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GraphQueryError
impl RefUnwindSafe for GraphQueryError
impl Send for GraphQueryError
impl Sync for GraphQueryError
impl Unpin for GraphQueryError
impl UnwindSafe for GraphQueryError
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