pub enum SingleConnSessionError {
TransportBuildError(Error),
AuthenticateError(NonthrowingFunctionError),
GraphQueryError(GraphQueryError),
}
Variants§
TransportBuildError(Error)
AuthenticateError(NonthrowingFunctionError)
GraphQueryError(GraphQueryError)
Trait Implementations§
source§impl Debug for SingleConnSessionError
impl Debug for SingleConnSessionError
source§impl Display for SingleConnSessionError
impl Display for SingleConnSessionError
source§impl Error for SingleConnSessionError
impl Error for SingleConnSessionError
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.
impl Send for SingleConnSessionError
Auto Trait Implementations§
impl Freeze for SingleConnSessionError
impl !RefUnwindSafe for SingleConnSessionError
impl Sync for SingleConnSessionError
impl Unpin for SingleConnSessionError
impl !UnwindSafe for SingleConnSessionError
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