1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
use crate::*;
/// An alias for `Method`, representing the HTTP request method.
pub type RequestMethod = Method;
/// An alias for `String`, representing the host part of an HTTP request.
pub type RequestHost = String;
/// An alias for `HttpVersion`, representing the HTTP version.
pub type RequestVersion = HttpVersion;
/// An alias for `String`, representing the path portion of the request URL.
pub type RequestPath = String;
/// An alias for `String`, representing the key type for request query parameters.
pub type RequestQuerysKey = String;
/// An alias for `String`, representing the value type for request query parameters.
pub type RequestQuerysValue = String;
/// An alias for `Option<RequestQuerysValue>`, representing an optional query parameter value.
pub type OptionRequestQuerysValue = ;
/// An alias for `HashMapXxHash3_64<RequestQuerysKey, RequestQuerysValue>`, representing all query parameters parsed from the request URL.
pub type RequestQuerys = ;
/// An alias for `Vec<u8>`, representing the raw binary body of the request.
pub type RequestBody = ;
/// An alias for `String`, representing the request body as a UTF-8 encoded string.
pub type RequestBodyString = String;
/// An alias for `String`, representing the key type for request headers.
pub type RequestHeadersKey = String;
/// An alias for `String`, representing a single value for an HTTP request header.
pub type RequestHeadersValueItem = String;
/// An alias for `Option<RequestHeadersValueItem>`, representing an optional header value item.
pub type OptionRequestHeadersValueItem = ;
/// An alias for `VecDeque<RequestHeadersValueItem>`, representing a collection of values for a single HTTP request header.
pub type RequestHeadersValue = ;
/// An alias for `Option<RequestHeadersValue>`, representing an optional collection of header values.
pub type OptionRequestHeadersValue = ;
/// An alias for `HashMapXxHash3_64<RequestHeadersKey, RequestHeadersValue>`, representing all headers sent with the HTTP request.
pub type RequestHeaders = ;
/// An alias for `Result<Request, RequestError>`, representing the result type returned from a request reader handler.
pub type RequestReaderHandleResult = ;
/// An alias for `RwLockReadGuard<'a, Request>`, representing a read guard for a `Request` wrapped in a `RwLock`.
pub type RwLockReadGuardRequest<'a> = ;
/// An alias for `RwLockWriteGuard<'a, Request>`, representing a write guard for a `Request` wrapped in a `RwLock`.
pub type RwLockWriteGuardRequest<'a> = ;