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> for RawBody<B>
 
impl<S, B> FromRequest<S, B> for RawBody<B>
§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.
Auto Trait Implementations§
impl<B> Freeze for RawBody<B>where
    B: Freeze,
impl<B> RefUnwindSafe for RawBody<B>where
    B: RefUnwindSafe,
impl<B> Send for RawBody<B>where
    B: Send,
impl<B> Sync for RawBody<B>where
    B: Sync,
impl<B> Unpin for RawBody<B>where
    B: Unpin,
impl<B> UnwindSafe for RawBody<B>where
    B: 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