Struct xitca_web::error::Error

source ·
pub struct Error<C = ()>(/* private fields */);
Expand description

type erased error object. can be used for dynamic access to error’s debug/display info. it also support upcasting and downcasting.

§Examples:

use std::{convert::Infallible, error, fmt};

use xitca_web::{error::Error, http::WebResponse, service::Service, WebContext};

// concrete error type
#[derive(Debug)]
struct Foo;

// implement debug and display format.
impl fmt::Display for Foo {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str("Foo")
    }
}

// implement Error trait
impl error::Error for Foo {}

// implement Service trait for http response generating.
impl<'r, C> Service<WebContext<'r, C>> for Foo {
    type Response = WebResponse;
    type Error = Infallible;

    async fn call(&self, _: WebContext<'r, C>) -> Result<Self::Response, Self::Error> {
        Ok(WebResponse::default())
    }
}

async fn handle_error<C>(ctx: WebContext<'_, C>) {
    // construct error object.
    let e = Error::<C>::from_service(Foo);

    // format and display error
    println!("{e:?}");
    println!("{e}");

    // generate http response.
    let res = Service::call(&e, ctx).await.unwrap();
    assert_eq!(res.status().as_u16(), 200);

    // upcast and downcast to concrete error type again.
    // *. trait upcast is a nightly feature.
    // see https://github.com/rust-lang/rust/issues/65991 for detail
     
    // let e = &*e as &dyn error::Error;
    // assert!(e.downcast_ref::<Foo>().is_some());
}

Implementations§

source§

impl<C> Error<C>

source

pub fn from_service<S>(s: S) -> Self
where S: for<'r> Service<WebContext<'r, C>, Response = WebResponse, Error = Infallible> + Error + Send + Sync + 'static,

Trait Implementations§

source§

impl<C> Debug for Error<C>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<C> Deref for Error<C>

§

type Target = dyn for<'r> ErrorService<WebContext<'r, C>, Response = Response<ResponseBody>, Error = Infallible>

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<C> DerefMut for Error<C>

source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
source§

impl<C> Display for Error<C>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<C> Error for Error<C>

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

impl<C> From<BodyOverFlow> for Error<C>

source§

fn from(e: BodyOverFlow) -> Self

Converts to this type from the input type.
source§

impl<C> From<Box<dyn Error + Sync + Send>> for Error<C>

source§

fn from(e: Box<dyn Error + Send + Sync>) -> Self

Converts to this type from the input type.
source§

impl<C> From<EncodingError> for Error<C>

source§

fn from(e: EncodingError) -> Self

Converts to this type from the input type.
source§

impl<C> From<Error> for Error<C>

source§

fn from(e: Error) -> Self

Converts to this type from the input type.
source§

impl<C> From<Error> for Error<C>

source§

fn from(e: Error) -> Self

Converts to this type from the input type.
source§

impl<C> From<Error> for Error<C>

source§

fn from(e: Error) -> Self

Converts to this type from the input type.
source§

impl<C> From<Error> for Error<C>

source§

fn from(e: Error) -> Self

Converts to this type from the input type.
source§

impl<C> From<ErrorStatus> for Error<C>

source§

fn from(e: ErrorStatus) -> Self

Converts to this type from the input type.
source§

impl<C> From<ExtensionNotFound> for Error<C>

source§

fn from(e: ExtensionNotFound) -> Self

Converts to this type from the input type.
source§

impl<C> From<HeaderNotFound> for Error<C>

source§

fn from(e: HeaderNotFound) -> Self

Converts to this type from the input type.
source§

impl<C> From<Infallible> for Error<C>

source§

fn from(e: Infallible) -> Self

Converts to this type from the input type.
source§

impl<C> From<InvalidHeaderValue> for Error<C>

source§

fn from(e: InvalidHeaderValue) -> Self

Converts to this type from the input type.
source§

impl<C> From<MatchError> for Error<C>

source§

fn from(e: MatchError) -> Self

Converts to this type from the input type.
source§

impl<C> From<MethodNotAllowed> for Error<C>

source§

fn from(e: MethodNotAllowed) -> Self

Converts to this type from the input type.
source§

impl<C> From<ParseError> for Error<C>

source§

fn from(e: ParseError) -> Self

Converts to this type from the input type.
source§

impl<C, E> From<Pipeline<Box<dyn Any + Send>, E>> for Error<C>
where E: Into<Error<C>>,

source§

fn from(e: CatchUnwindError<E>) -> Self

Converts to this type from the input type.
source§

impl<F, S, C> From<Pipeline<F, S>> for Error<C>
where F: Into<Error<C>>, S: Into<Error<C>>,

source§

fn from(pipe: PipelineE<F, S>) -> Self

Converts to this type from the input type.
source§

impl<E, C> From<RouterError<E>> for Error<C>
where E: Into<Self>,

source§

fn from(e: RouterError<E>) -> Self

Converts to this type from the input type.
source§

impl<C> From<StatusCode> for Error<C>

source§

fn from(e: StatusCode) -> Self

Converts to this type from the input type.
source§

impl<C> From<StdError> for Error<C>

source§

fn from(e: StdError) -> Self

Converts to this type from the input type.
source§

impl<C> From<ThreadJoinError> for Error<C>

source§

fn from(e: ThreadJoinError) -> Self

Converts to this type from the input type.
source§

impl<C> From<ToStrError> for Error<C>

source§

fn from(e: ToStrError) -> Self

Converts to this type from the input type.
source§

impl<'r, C, B> Responder<WebContext<'r, C, B>> for Error<C>

§

type Response = Response<ResponseBody>

§

type Error = Error<C>

source§

async fn respond( self, _: WebContext<'r, C, B> ) -> Result<Self::Response, Self::Error>

generate response from given request.
source§

fn map(self, res: Self::Response) -> Result<Self::Response, Self::Error>
where Self: Sized,

map response type and mutate it’s state. default to pass through without any modification.
source§

impl<'r, C> Service<WebContext<'r, C>> for Error<C>

§

type Response = Response<ResponseBody>

The Ok part of output future.
§

type Error = Infallible

The Err part of output future.
source§

async fn call( &self, ctx: WebContext<'r, C> ) -> Result<Self::Response, Self::Error>

Auto Trait Implementations§

§

impl<C = ()> !RefUnwindSafe for Error<C>

§

impl<C> Send for Error<C>

§

impl<C> Sync for Error<C>

§

impl<C> Unpin for Error<C>

§

impl<C = ()> !UnwindSafe for Error<C>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<S, Arg> ServiceExt<Arg> for S
where S: Service<Arg>,

source§

fn enclosed<T>(self, build: T) -> Pipeline<Self, T, BuildEnclosed>
where T: Service<Result<Self::Response, Self::Error>>, Self: Sized,

Enclose Self with given T as Service<<Self as Service<_>>::Response>>. In other word T would take Self’s Service::Response type as it’s generic argument of Service<_> impl.
source§

fn enclosed_fn<T, Req>(self, func: T) -> Pipeline<Self, T, BuildEnclosedFn>
where T: for<'s> AsyncClosure<(&'s Self::Response, Req)> + Clone, Self: Sized,

Function version of Self::enclosed method.
source§

fn map<F, Res, ResMap>(self, mapper: F) -> Pipeline<Self, F, BuildMap>
where F: Fn(Res) -> ResMap + Clone, Self: Sized,

Mutate <<Self::Response as Service<Req>>::Future as Future>::Output type with given closure.
source§

fn map_err<F, Err, ErrMap>(self, err: F) -> Pipeline<Self, F, BuildMapErr>
where F: Fn(Err) -> ErrMap + Clone, Self: Sized,

Mutate <Self::Response as Service<Req>>::Error type with given closure.
source§

fn and_then<F>(self, factory: F) -> Pipeline<Self, F, BuildAndThen>
where F: Service<Arg>, Self: Sized,

Chain another service factory who’s service takes Self’s Service::Response output as Service::Request.
source§

impl<S, Req> ServiceObject<Req> for S
where S: Service<Req>,

§

type Response = <S as Service<Req>>::Response

§

type Error = <S as Service<Req>>::Error

source§

fn call<'s>( &'s self, req: Req ) -> Pin<Box<dyn Future<Output = Result<<S as ServiceObject<Req>>::Response, <S as ServiceObject<Req>>::Error>> + 's>>
where Req: 's,

source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more