pub struct Parts {
pub method: Method,
pub uri: Uri,
pub version: Version,
pub headers: HeaderMap,
pub extensions: Extensions,
/* private fields */
}Expand description
Component parts of an HTTP Request
The HTTP request head consists of a method, uri, version, and a set of header fields.
Fields§
§method: MethodThe request’s method
uri: UriThe request’s URI
version: VersionThe request’s version
headers: HeaderMapThe request’s headers
extensions: ExtensionsThe request’s extensions
Trait Implementations§
Source§impl From<Parts> for RequestWrapper
impl From<Parts> for RequestWrapper
Source§fn from(parts: Parts) -> RequestWrapper
fn from(parts: Parts) -> RequestWrapper
Converts to this type from the input type.
Source§impl<S, B> FromRequest<S, B> for Parts
impl<S, B> FromRequest<S, B> for Parts
Source§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.
Source§impl RequestPartsExt for Parts
impl RequestPartsExt for Parts
Source§fn extract<E>(
&mut self,
) -> Pin<Box<dyn Future<Output = Result<E, <E as FromRequestParts<()>>::Rejection>> + Send + '_>>where
E: FromRequestParts<()> + 'static,
fn extract<E>(
&mut self,
) -> Pin<Box<dyn Future<Output = Result<E, <E as FromRequestParts<()>>::Rejection>> + Send + '_>>where
E: FromRequestParts<()> + 'static,
Apply an extractor to this
Parts. Read moreAuto Trait Implementations§
impl !Freeze for Parts
impl !RefUnwindSafe for Parts
impl Send for Parts
impl Sync for Parts
impl Unpin for Parts
impl !UnwindSafe for Parts
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