Struct axum::TypedHeader
source · pub struct TypedHeader<T>(pub T);Expand description
Extractor and response that works with typed header values from headers.
§As extractor
In general, it’s recommended to extract only the needed headers via TypedHeader rather than
removing all headers with the HeaderMap extractor.
use axum::{
TypedHeader,
headers::UserAgent,
routing::get,
Router,
};
async fn users_teams_show(
TypedHeader(user_agent): TypedHeader<UserAgent>,
) {
// ...
}
let app = Router::new().route("/users/:user_id/team/:team_id", get(users_teams_show));§As response
use axum::{
TypedHeader,
response::IntoResponse,
headers::ContentType,
};
async fn handler() -> (TypedHeader<ContentType>, &'static str) {
(
TypedHeader(ContentType::text_utf8()),
"Hello, World!",
)
}Tuple Fields§
§0: TTrait Implementations§
source§impl<T: Clone> Clone for TypedHeader<T>
impl<T: Clone> Clone for TypedHeader<T>
source§fn clone(&self) -> TypedHeader<T>
fn clone(&self) -> TypedHeader<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl<T: Debug> Debug for TypedHeader<T>
impl<T: Debug> Debug for TypedHeader<T>
source§impl<T> Deref for TypedHeader<T>
impl<T> Deref for TypedHeader<T>
source§impl<T> DerefMut for TypedHeader<T>
impl<T> DerefMut for TypedHeader<T>
source§impl<T, S> FromRequestParts<S> for TypedHeader<T>
impl<T, S> FromRequestParts<S> for TypedHeader<T>
§type Rejection = TypedHeaderRejection
type Rejection = TypedHeaderRejection
If the extractor fails it’ll use this “rejection” type. A rejection is
a kind of error that can be converted into a response.
source§impl<T> IntoResponse for TypedHeader<T>where
T: Header,
impl<T> IntoResponse for TypedHeader<T>where
T: Header,
source§fn into_response(self) -> Response
fn into_response(self) -> Response
Create a response.
source§impl<T> IntoResponseParts for TypedHeader<T>where
T: Header,
impl<T> IntoResponseParts for TypedHeader<T>where
T: Header,
§type Error = Infallible
type Error = Infallible
The type returned in the event of an error. Read more
source§fn into_response_parts(
self,
res: ResponseParts,
) -> Result<ResponseParts, Self::Error>
fn into_response_parts( self, res: ResponseParts, ) -> Result<ResponseParts, Self::Error>
Set parts of the response
impl<T: Copy> Copy for TypedHeader<T>
Auto Trait Implementations§
impl<T> Freeze for TypedHeader<T>where
T: Freeze,
impl<T> RefUnwindSafe for TypedHeader<T>where
T: RefUnwindSafe,
impl<T> Send for TypedHeader<T>where
T: Send,
impl<T> Sync for TypedHeader<T>where
T: Sync,
impl<T> Unpin for TypedHeader<T>where
T: Unpin,
impl<T> UnwindSafe for TypedHeader<T>where
T: 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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<S, B, T> FromRequest<S, B, ViaParts> for T
impl<S, B, T> FromRequest<S, B, ViaParts> for T
§type Rejection = <T as FromRequestParts<S>>::Rejection
type Rejection = <T as FromRequestParts<S>>::Rejection
If the extractor fails it’ll use this “rejection” type. A rejection is
a kind of error that can be converted into a response.
source§impl<H, T, B> HandlerWithoutStateExt<T, B> for H
impl<H, T, B> HandlerWithoutStateExt<T, B> for H
source§fn into_service(self) -> HandlerService<H, T, (), B>
fn into_service(self) -> HandlerService<H, T, (), B>
Convert the handler into a
Service and no state.source§fn into_make_service(self) -> IntoMakeService<HandlerService<H, T, (), B>>
fn into_make_service(self) -> IntoMakeService<HandlerService<H, T, (), B>>
Convert the handler into a
MakeService and no state. Read moresource§fn into_make_service_with_connect_info<C>(
self,
) -> IntoMakeServiceWithConnectInfo<HandlerService<H, T, (), B>, C>
fn into_make_service_with_connect_info<C>( self, ) -> IntoMakeServiceWithConnectInfo<HandlerService<H, T, (), B>, C>
Convert the handler into a
MakeService which stores information
about the incoming connection and has no state. Read more