menemen 1.0.3

A streaming http request library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// List of request errors
#[derive(Clone, Debug)]
pub enum RequestErrors {
    /// Cannot set headers after they sent
    CantSetHeadersAfterRequestSent,
    /// Cannot resolve given url
    CantResolveUrl,
    /// Connection timed out
    ConnectionTimeout,
    /// Given url is not correct
    MalformedUrl,
    /// Request already sent
    AlreadySent,
    /// Connection error occured with string
    ConnectionError(String),
}