http_type/request/
type.rs1use crate::*;
2
3pub type RequestMethod = Methods;
5pub type RequestHost = String;
7pub type RequestVersion = HttpVersion;
9pub type RequestPath = String;
11pub type RequestQuerysKey = String;
13pub type RequestQuerysValue = String;
15pub type RequestQuerys = HashMapXxHash3_64<RequestQuerysKey, RequestQuerysValue>;
17pub type RequestBody = Vec<u8>;
19pub type RequestBodyString = String;
21pub type RequestHeadersKey = String;
23pub type RequestHeadersValue = String;
25pub type RequestHeaders = HashMapXxHash3_64<RequestHeadersKey, RequestHeadersValue>;
27pub type RequestReaderHandleResult = Result<Request, RequestError>;
29pub type RwLockReadGuardRequest<'a> = RwLockReadGuard<'a, Request>;
31pub type RwLockWriteGuardRequest<'a> = RwLockWriteGuard<'a, Request>;
33pub type OptionRequestQuerysValue = Option<RequestQuerysValue>;
35pub type OptionRequestHeadersValue = Option<RequestHeadersValue>;