pub enum MiddlewareError<N, E> {
Endpoint(N),
Middleware(E),
}Expand description
Error type for middleware that can represent errors from either the middleware itself or the endpoint it wraps.
Variants§
Endpoint(N)
Error originating from the endpoint being called.
Middleware(E)
Error originating from the middleware itself.
Trait Implementations§
Source§impl<N: HttpError, E: HttpError> Error for MiddlewareError<N, E>
impl<N: HttpError, E: HttpError> Error for MiddlewareError<N, E>
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()
Auto Trait Implementations§
impl<N, E> Freeze for MiddlewareError<N, E>
impl<N, E> RefUnwindSafe for MiddlewareError<N, E>where
N: RefUnwindSafe,
E: RefUnwindSafe,
impl<N, E> Send for MiddlewareError<N, E>
impl<N, E> Sync for MiddlewareError<N, E>
impl<N, E> Unpin for MiddlewareError<N, E>
impl<N, E> UnwindSafe for MiddlewareError<N, E>where
N: UnwindSafe,
E: UnwindSafe,
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