pub struct Input {
pub get: HashMap<String, String>,
pub post: HashMap<String, String>,
pub file: HashMap<String, Vec<WebFile>>,
pub cookie: HashMap<String, String>,
pub params: HashMap<String, String>,
pub raw: RawData,
}
Expand description
Input http protocol datas
§Values
get: HashMap<String, String>
- GET data.post: HashMap<String, String>
- POST data.file: HashMap<String, Vec<WebFile>>
- FILE data.cookie: HashMap<String, String>
- Cookies.params: HashMap<String, String>
- Params from web servers.
Fields§
§get: HashMap<String, String>
GET data
post: HashMap<String, String>
POST data
file: HashMap<String, Vec<WebFile>>
FILE data
Cookies
params: HashMap<String, String>
Params from web servers
raw: RawData
Raw data
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Input
impl RefUnwindSafe for Input
impl Send for Input
impl Sync for Input
impl Unpin for Input
impl UnwindSafe for Input
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