Expand description
Accept and respond with one of multiple types in axum handlers.
This is espacially useful to create endpoints which take one of multiple message formats.
This can be done with AxumEither
directly. This can get quite verbose for more than two
types. For this the one_of
macro can be used to express the type and the map_one_of
or
match_one_of
macros can be used to work with these types ergonomically.
§Example
use axum::{Json, Form};
use axum_either::AxumEither;
#[derive(serde::Serialize, serde::Deserialize, Debug, PartialEq)]
pub struct Request(u32);
/// Using AxumEither directly
pub async fn form_or_json(
request: AxumEither<Json<Request>, Form<Request>>
) -> AxumEither<Json<Request>, String> {
match request {
AxumEither::Left(Json(l)) => AxumEither::Left(Json(l)),
AxumEither::Right(r) => AxumEither::Right(format!("{:?}", r)),
}
}
/// Using one_of and match_one_of
pub async fn request_type(
request: axum_either::one_of!(Json<Request>, Form<Request>, String)
) -> &'static str {
axum_either::match_one_of!{request,
Json(_j) => "Json",
Form(_f) => "Form",
_s => "String",
}
}
For more examples see the examples directory.
Macros§
- map_
one_ of - Match a chain of
AxumEither
s from left to right and map them to anAxumEither
directly. - match_
one_ of - Match a chain of
AxumEither
s from left to right - one_of
- Build a chain of axum eithers which may contain any of the given type.
Structs§
- Axum
Either Rejection - A rejection when both values of
AxumEither
are rejected while parsing.
Enums§
- Axum
Either - Extract or Respond with one of the given types, this can be composed to extract more types.