Struct lexa_framework::extract::RawForm
source · pub struct RawForm(pub Bytes);Expand description
Extractor that extracts raw form requests.
For GET requests it will extract the raw query. For other methods it extracts the raw
application/x-www-form-urlencoded encoded request body.
Example
use axum::{
extract::RawForm,
routing::get,
Router
};
async fn handler(RawForm(form): RawForm) {}
let app = Router::new().route("/", get(handler));Tuple Fields§
§0: BytesTrait Implementations§
source§impl<S, B> FromRequest<S, B, ViaRequest> for RawFormwhere
B: Body + Send + 'static,
<B as Body>::Data: Send,
<B as Body>::Error: Into<Box<dyn Error + Send + Sync, Global>>,
S: Send + Sync,
impl<S, B> FromRequest<S, B, ViaRequest> for RawFormwhere B: Body + Send + 'static, <B as Body>::Data: Send, <B as Body>::Error: Into<Box<dyn Error + Send + Sync, Global>>, S: Send + Sync,
§type Rejection = RawFormRejection
type Rejection = RawFormRejection
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 RefUnwindSafe for RawForm
impl Send for RawForm
impl Sync for RawForm
impl Unpin for RawForm
impl UnwindSafe for RawForm
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