pub enum Error {
Responder(Response),
Normal(Box<dyn StdError + Send + Sync>),
Report(Box<dyn StdError + Send + Sync>, Response),
}
Expand description
Represents errors that can occur handling application.
Variants
Responder(Response)
Receives a Response
as error.
Normal(Box<dyn StdError + Send + Sync>)
Receives a boxed std::error::Error
as error.
Report(Box<dyn StdError + Send + Sync>, Response)
Receives a boxed std::error::Error
and Response
pair as error.
Implementations
sourceimpl Error
impl Error
sourcepub fn normal<T>(t: T) -> Self where
T: StdError + Send + Sync + 'static,
pub fn normal<T>(t: T) -> Self where
T: StdError + Send + Sync + 'static,
Create a new error object from any error type.
sourcepub fn is<T>(&self) -> bool where
T: StdError + 'static,
pub fn is<T>(&self) -> bool where
T: StdError + 'static,
Forwards to the method defined on the type dyn Error
.
sourcepub fn downcast<T>(self) -> Result<T, Self> where
T: StdError + 'static,
pub fn downcast<T>(self) -> Result<T, Self> where
T: StdError + 'static,
Attempt to downcast the error object to a concrete type.
sourcepub fn downcast_ref<T>(&self) -> Option<&T> where
T: StdError + 'static,
pub fn downcast_ref<T>(&self) -> Option<&T> where
T: StdError + 'static,
Downcast this error object by reference.
sourcepub fn downcast_mut<T>(&mut self) -> Option<&mut T> where
T: StdError + 'static,
pub fn downcast_mut<T>(&mut self) -> Option<&mut T> where
T: StdError + 'static,
Downcast this error object by mutable reference.
Trait Implementations
sourceimpl Error for Error
impl Error for Error
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
sourceimpl From<CookiesError> for Error
impl From<CookiesError> for Error
sourcefn from(e: CookiesError) -> Self
fn from(e: CookiesError) -> Self
Converts to this type from the input type.
sourceimpl From<Error> for Error
impl From<Error> for Error
sourcefn from(e: SessionError) -> Self
fn from(e: SessionError) -> Self
Converts to this type from the input type.
sourceimpl From<Error> for Error
impl From<Error> for Error
sourcefn from(e: MultipartError) -> Self
fn from(e: MultipartError) -> Self
Converts to this type from the input type.
sourceimpl From<ParamsError> for Error
impl From<ParamsError> for Error
sourcefn from(e: ParamsError) -> Self
fn from(e: ParamsError) -> Self
Converts to this type from the input type.
sourceimpl From<PayloadError> for Error
impl From<PayloadError> for Error
sourcefn from(e: PayloadError) -> Self
fn from(e: PayloadError) -> Self
Converts to this type from the input type.
sourceimpl From<WebSocketError> for Error
impl From<WebSocketError> for Error
sourcefn from(e: WebSocketError) -> Self
fn from(e: WebSocketError) -> Self
Converts to this type from the input type.
sourceimpl IntoResponse for Error
impl IntoResponse for Error
sourcefn into_response(self) -> Response
fn into_response(self) -> Response
Convert self to HTTP Response
.
sourcefn into_error(self) -> Error
fn into_error(self) -> Error
Convert self to the Error
.
Auto Trait Implementations
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
fn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
sourcefn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
fn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output;
where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output;
where
S: Into<Dispatch>,
T: Future, type Output = <T as Future>::Output;
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output;
fn with_current_subscriber(self) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more