Struct shuttle_next::extract::RawBody
source · pub struct RawBody<B = Body>(pub B);Expand description
Extractor that extracts the raw request body.
Since extracting the raw request body requires consuming it, the RawBody extractor must be
last if there are multiple extractors in a handler. See “the order of extractors”
Example
use axum::{
extract::RawBody,
routing::get,
Router,
};
use futures_util::StreamExt;
async fn handler(RawBody(body): RawBody) {
// ...
}
let app = Router::new().route("/users", get(handler));Tuple Fields§
§0: BTrait Implementations§
source§impl<S, B> FromRequest<S, B, ViaRequest> for RawBody<B>where
B: Send,
S: Send + Sync,
impl<S, B> FromRequest<S, B, ViaRequest> for RawBody<B>where B: Send, S: Send + Sync,
§type Rejection = Infallible
type Rejection = Infallible
If the extractor fails it’ll use this “rejection” type. A rejection is
a kind of error that can be converted into a response.