rambl_rs 0.1.10

An HTTP server framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(dead_code)]

use std::collections::HashMap;

/// Contains all the information about the current request
pub struct Request {
    /// Contains all valid headers present on the request
    pub headers: Vec<(String, String)>,
    /// Contains the request body
    pub body: String,
    /// Contains Request Query
    pub query: HashMap<String, String>
}