Struct dyer::component::request::InnerRequest [−][src]
pub struct InnerRequest {
pub uri: Uri,
pub version: Version,
pub method: Method,
pub headers: HeaderMap<HeaderValue>,
pub extensions: Exts,
}Expand description
An Wrapper of http::request::Parts
Component parts of an HTTP Request
The HTTP request head consists of a method, uri, version, and a set of header fields.
Fields
uri: Uriversion: Versionrequest’s vesoin
method: Methodheaders: HeaderMap<HeaderValue>additional headers if necessary
extensions: Extsadditional arguments for extensive application
Trait Implementations
Returns the “default value” for a type. Read more
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl !RefUnwindSafe for InnerRequest
impl Send for InnerRequest
impl Sync for InnerRequest
impl Unpin for InnerRequest
impl !UnwindSafe for InnerRequest
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more