pub struct SetResponseHeader<S, M> { /* private fields */ }Expand description
Middleware that sets a header on the response.
Implementations§
Source§impl<S, H: HeaderEncode> SetResponseHeader<S, TypedHeaderAsMaker<H>>
impl<S, H: HeaderEncode> SetResponseHeader<S, TypedHeaderAsMaker<H>>
Sourcepub fn overriding_typed(inner: S, header: H) -> Self
pub fn overriding_typed(inner: S, header: H) -> Self
Create a new SetResponseHeader from a typed HeaderEncode.
See SetResponseHeader::overriding for more details.
Sourcepub fn appending_typed(inner: S, header: H) -> Self
pub fn appending_typed(inner: S, header: H) -> Self
Create a new SetResponseHeader from a typed HeaderEncode.
See SetResponseHeader::appending for more details.
Sourcepub fn if_not_present_typed(inner: S, header: H) -> Self
pub fn if_not_present_typed(inner: S, header: H) -> Self
Create a new SetResponseHeader from a typed HeaderEncode.
See SetResponseHeader::if_not_present for more details.
Source§impl<S, M> SetResponseHeader<S, M>
impl<S, M> SetResponseHeader<S, M>
Sourcepub fn overriding(inner: S, header_name: HeaderName, make: M) -> Self
pub fn overriding(inner: S, header_name: HeaderName, make: M) -> Self
Create a new SetResponseHeader.
If a previous value exists for the same header, it is removed and replaced with the new header value.
Sourcepub fn appending(inner: S, header_name: HeaderName, make: M) -> Self
pub fn appending(inner: S, header_name: HeaderName, make: M) -> Self
Create a new SetResponseHeader.
The new header is always added, preserving any existing values. If previous values exist, the header will have multiple values.
Sourcepub fn if_not_present(inner: S, header_name: HeaderName, make: M) -> Self
pub fn if_not_present(inner: S, header_name: HeaderName, make: M) -> Self
Create a new SetResponseHeader.
If a previous value exists for the header, the new value is not inserted.
Sourcepub fn into_inner(self) -> S
pub fn into_inner(self) -> S
Consumes self, returning the underlying service.
Source§impl<S, F, A> SetResponseHeader<S, BoxMakeHeaderValueFactoryFn<F, A>>
impl<S, F, A> SetResponseHeader<S, BoxMakeHeaderValueFactoryFn<F, A>>
Sourcepub fn overriding_fn(inner: S, header_name: HeaderName, make_fn: F) -> Self
pub fn overriding_fn(inner: S, header_name: HeaderName, make_fn: F) -> Self
Create a new SetResponseHeader from a header::MakeHeaderValueFn.
See SetResponseHeader::overriding for more details.
Sourcepub fn appending_fn(inner: S, header_name: HeaderName, make_fn: F) -> Self
pub fn appending_fn(inner: S, header_name: HeaderName, make_fn: F) -> Self
Create a new SetResponseHeader from a header::MakeHeaderValueFn.
See SetResponseHeader::appending for more details.
Sourcepub fn if_not_present_fn(inner: S, header_name: HeaderName, make_fn: F) -> Self
pub fn if_not_present_fn(inner: S, header_name: HeaderName, make_fn: F) -> Self
Create a new SetResponseHeader from a header::MakeHeaderValueFn.
See SetResponseHeader::if_not_present for more details.
Source§impl<S, M> SetResponseHeader<S, M>
impl<S, M> SetResponseHeader<S, M>
Sourcepub fn overriding_default(
inner: S,
header_name: HeaderName,
) -> SetResponseHeader<S, MakeHeaderValueDefault<M>>
pub fn overriding_default( inner: S, header_name: HeaderName, ) -> SetResponseHeader<S, MakeHeaderValueDefault<M>>
Create a new SetResponseHeader from a Default MakeHeaderValue.
See SetResponseHeader::overriding for more details.
Sourcepub fn appending_default(
inner: S,
header_name: HeaderName,
) -> SetResponseHeader<S, MakeHeaderValueDefault<M>>
pub fn appending_default( inner: S, header_name: HeaderName, ) -> SetResponseHeader<S, MakeHeaderValueDefault<M>>
Create a new SetResponseHeader from a Default MakeHeaderValue.
See SetResponseHeader::appending for more details.
Sourcepub fn if_not_present_default(
inner: S,
header_name: HeaderName,
) -> SetResponseHeader<S, MakeHeaderValueDefault<M>>
pub fn if_not_present_default( inner: S, header_name: HeaderName, ) -> SetResponseHeader<S, MakeHeaderValueDefault<M>>
Create a new SetResponseHeader from a Default MakeHeaderValue.
See SetResponseHeader::if_not_present for more details.
Source§impl<S, M: TypedHeader> SetResponseHeader<S, M>
impl<S, M: TypedHeader> SetResponseHeader<S, M>
Sourcepub fn overriding_default_typed(
inner: S,
) -> SetResponseHeader<S, MakeHeaderValueDefault<TypedHeaderAsMaker<M>>>
pub fn overriding_default_typed( inner: S, ) -> SetResponseHeader<S, MakeHeaderValueDefault<TypedHeaderAsMaker<M>>>
Create a new SetResponseHeader from a Default TypedHeader.
See SetResponseHeader::overriding for more details.
Sourcepub fn appending_default_typed(
inner: S,
) -> SetResponseHeader<S, MakeHeaderValueDefault<TypedHeaderAsMaker<M>>>
pub fn appending_default_typed( inner: S, ) -> SetResponseHeader<S, MakeHeaderValueDefault<TypedHeaderAsMaker<M>>>
Create a new SetResponseHeader from a Default TypedHeader.
See SetResponseHeader::appending for more details.
Sourcepub fn if_not_present_default_typed(
inner: S,
) -> SetResponseHeader<S, MakeHeaderValueDefault<TypedHeaderAsMaker<M>>>
pub fn if_not_present_default_typed( inner: S, ) -> SetResponseHeader<S, MakeHeaderValueDefault<TypedHeaderAsMaker<M>>>
Create a new SetResponseHeader from a Default TypedHeader.
See SetResponseHeader::if_not_present for more details.
Trait Implementations§
Source§impl<S: Clone, M: Clone> Clone for SetResponseHeader<S, M>
impl<S: Clone, M: Clone> Clone for SetResponseHeader<S, M>
Source§fn clone(&self) -> SetResponseHeader<S, M>
fn clone(&self) -> SetResponseHeader<S, M>
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl<S, M> Debug for SetResponseHeader<S, M>where
S: Debug,
impl<S, M> Debug for SetResponseHeader<S, M>where
S: Debug,
Source§impl<ReqBody, ResBody, S, M> Service<Request<ReqBody>> for SetResponseHeader<S, M>
impl<ReqBody, ResBody, S, M> Service<Request<ReqBody>> for SetResponseHeader<S, M>
Source§type Output = <S as Service<Request<ReqBody>>>::Output
type Output = <S as Service<Request<ReqBody>>>::Output
Source§type Error = <S as Service<Request<ReqBody>>>::Error
type Error = <S as Service<Request<ReqBody>>>::Error
Auto Trait Implementations§
impl<S, M> !Freeze for SetResponseHeader<S, M>
impl<S, M> RefUnwindSafe for SetResponseHeader<S, M>where
S: RefUnwindSafe,
M: RefUnwindSafe,
impl<S, M> Send for SetResponseHeader<S, M>
impl<S, M> Sync for SetResponseHeader<S, M>
impl<S, M> Unpin for SetResponseHeader<S, M>
impl<S, M> UnsafeUnpin for SetResponseHeader<S, M>where
S: UnsafeUnpin,
M: UnsafeUnpin,
impl<S, M> UnwindSafe for SetResponseHeader<S, M>where
S: UnwindSafe,
M: UnwindSafe,
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<S, Input, Connection> ConnectorService<Input> for S
impl<S, Input, Connection> ConnectorService<Input> for S
Source§type Connection = Connection
type Connection = Connection
ConnectorServiceSource§type Error = <S as Service<Input>>::Error
type Error = <S as Service<Input>>::Error
Source§fn connect(
&self,
input: Input,
) -> impl Future<Output = Result<EstablishedClientConnection<<S as ConnectorService<Input>>::Connection, Input>, <S as ConnectorService<Input>>::Error>> + Send
fn connect( &self, input: Input, ) -> impl Future<Output = Result<EstablishedClientConnection<<S as ConnectorService<Input>>::Connection, Input>, <S as ConnectorService<Input>>::Error>> + Send
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<S, Body> HttpClientExt for S
impl<S, Body> HttpClientExt for S
Source§type ExecuteResponse = Response<Body>
type ExecuteResponse = Response<Body>
execute method.Source§type ExecuteError = <S as Service<Request>>::Error
type ExecuteError = <S as Service<Request>>::Error
execute method.Source§fn get(
&self,
url: impl IntoUrl,
) -> RequestBuilder<'_, S, <S as HttpClientExt>::ExecuteResponse>
fn get( &self, url: impl IntoUrl, ) -> RequestBuilder<'_, S, <S as HttpClientExt>::ExecuteResponse>
GET request to a URL. Read moreSource§fn post(
&self,
url: impl IntoUrl,
) -> RequestBuilder<'_, S, <S as HttpClientExt>::ExecuteResponse>
fn post( &self, url: impl IntoUrl, ) -> RequestBuilder<'_, S, <S as HttpClientExt>::ExecuteResponse>
POST request to a URL. Read moreSource§fn put(
&self,
url: impl IntoUrl,
) -> RequestBuilder<'_, S, <S as HttpClientExt>::ExecuteResponse>
fn put( &self, url: impl IntoUrl, ) -> RequestBuilder<'_, S, <S as HttpClientExt>::ExecuteResponse>
PUT request to a URL. Read moreSource§fn patch(
&self,
url: impl IntoUrl,
) -> RequestBuilder<'_, S, <S as HttpClientExt>::ExecuteResponse>
fn patch( &self, url: impl IntoUrl, ) -> RequestBuilder<'_, S, <S as HttpClientExt>::ExecuteResponse>
PATCH request to a URL. Read moreSource§fn delete(
&self,
url: impl IntoUrl,
) -> RequestBuilder<'_, S, <S as HttpClientExt>::ExecuteResponse>
fn delete( &self, url: impl IntoUrl, ) -> RequestBuilder<'_, S, <S as HttpClientExt>::ExecuteResponse>
DELETE request to a URL. Read moreSource§fn head(
&self,
url: impl IntoUrl,
) -> RequestBuilder<'_, S, <S as HttpClientExt>::ExecuteResponse>
fn head( &self, url: impl IntoUrl, ) -> RequestBuilder<'_, S, <S as HttpClientExt>::ExecuteResponse>
HEAD request to a URL. Read moreSource§fn connect(
&self,
url: impl IntoUrl,
) -> RequestBuilder<'_, S, <S as HttpClientExt>::ExecuteResponse>
fn connect( &self, url: impl IntoUrl, ) -> RequestBuilder<'_, S, <S as HttpClientExt>::ExecuteResponse>
CONNECT request to a URL. Read moreSource§fn request(
&self,
method: Method,
url: impl IntoUrl,
) -> RequestBuilder<'_, S, <S as HttpClientExt>::ExecuteResponse>
fn request( &self, method: Method, url: impl IntoUrl, ) -> RequestBuilder<'_, S, <S as HttpClientExt>::ExecuteResponse>
Source§fn build_from_request<RequestBody>(
&self,
request: Request<RequestBody>,
) -> RequestBuilder<'_, S, <S as HttpClientExt>::ExecuteResponse>
fn build_from_request<RequestBody>( &self, request: Request<RequestBody>, ) -> RequestBuilder<'_, S, <S as HttpClientExt>::ExecuteResponse>
Source§fn execute(
&self,
request: Request,
) -> impl Future<Output = Result<<S as HttpClientExt>::ExecuteResponse, <S as HttpClientExt>::ExecuteError>>
fn execute( &self, request: Request, ) -> impl Future<Output = Result<<S as HttpClientExt>::ExecuteResponse, <S as HttpClientExt>::ExecuteError>>
Request. Read moreSource§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<S> IntoEndpointService<(S,)> for S
impl<S> IntoEndpointService<(S,)> for S
type Service = S
Source§fn into_endpoint_service(self) -> <S as IntoEndpointService<(S,)>>::Service
fn into_endpoint_service(self) -> <S as IntoEndpointService<(S,)>>::Service
rama_core::Service.Source§impl<S, State> IntoEndpointServiceWithState<(S,), State> for S
impl<S, State> IntoEndpointServiceWithState<(S,), State> for S
type Service = S
Source§fn into_endpoint_service_with_state(
self,
_state: State,
) -> <S as IntoEndpointServiceWithState<(S,), State>>::Service
fn into_endpoint_service_with_state( self, _state: State, ) -> <S as IntoEndpointServiceWithState<(S,), State>>::Service
rama_core::Service with state.