lest 0.2.1

A modular approach to a web server. Based on actix-web.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[allow(dead_code)]
#[derive(Debug)]
/// This UserAgent struct defines the user agent that can be accessed from a `Request`.
pub struct UserAgent {
    pub name: Option<String>,
    pub version: Option<String>,
    pub os: Option<String>,
    pub os_version: Option<String>,
    pub device_type: Option<String>,
    pub device: Option<String>,
    pub browser_type: Option<String>,
    pub vendor: Option<String>
}