Struct wasmcloud_interface_httpserver::HttpRequest [−][src]
pub struct HttpRequest {
pub method: String,
pub path: String,
pub query_string: String,
pub header: HeaderMap,
pub body: Vec<u8>,
}Expand description
HttpRequest contains data sent to actor about the http request
Fields
method: StringHTTP method. One of: GET,POST,PUT,DELETE,HEAD,OPTIONS,CONNECT,PATCH,TRACE
path: Stringfull request path
query_string: Stringquery string. May be an empty string if there were no query parameters.
header: HeaderMapmap of request headers (string key, string value)
body: Vec<u8>Request body as a byte array. May be empty.
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
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for HttpRequest
impl Send for HttpRequest
impl Sync for HttpRequest
impl Unpin for HttpRequest
impl UnwindSafe for HttpRequest
Blanket Implementations
Mutably borrows from an owned value. Read more
