Trait rama::http::service::web::extract::FromRequestContextRefPair

pub trait FromRequestContextRefPair<S>:
    Sized
    + Send
    + Sync
    + 'static {
    type Rejection: IntoResponse;

    // Required method
    fn from_request_context_ref_pair(
        ctx: &Context<S>,
        parts: &Parts,
    ) -> impl Future<Output = Result<Self, Self::Rejection>> + Send;
}
Expand description

Types that can be created from request parts.

Extractors that implement FromRequestParts cannot consume the request body and can thus be run in any order for handlers.

If your extractor needs to consume the request body then you should implement FromRequest and not [FromRequestParts].

Required Associated Types§

type Rejection: IntoResponse

If the extractor fails it’ll use this “rejection” type. A rejection is a kind of error that can be converted into a response.

Required Methods§

fn from_request_context_ref_pair( ctx: &Context<S>, parts: &Parts, ) -> impl Future<Output = Result<Self, Self::Rejection>> + Send

Perform the extraction.

Object Safety§

This trait is not object safe.

Implementors§

§

impl<S> FromRequestContextRefPair<S> for Method
where S: Clone + Send + Sync + 'static,

§

impl<S> FromRequestContextRefPair<S> for Authority
where S: Clone + Send + Sync + 'static,

§

type Rejection = MissingAuthority

§

impl<S> FromRequestContextRefPair<S> for Host
where S: Clone + Send + Sync + 'static,

§

type Rejection = MissingHost

§

impl<S, H> FromRequestContextRefPair<S> for TypedHeader<H>
where S: Clone + Send + Sync + 'static, H: Header + Send + Sync + 'static,

§

impl<S, T> FromRequestContextRefPair<S> for Path<T>
where S: Clone + Send + Sync + 'static, T: DeserializeOwned + Send + Sync + 'static,

§

type Rejection = PathRejection

§

impl<T, S> FromRequestContextRefPair<S> for Query<T>
where T: DeserializeOwned + Send + Sync + 'static, S: Clone + Send + Sync + 'static,

§

type Rejection = FailedToDeserializeQueryString