miniblink 0.4.0

Rust bindings to mininlink49
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14

#[repr(i32)]
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
/// The cookie command.
pub enum CookieCommand {
    /// Clear all cookies. Same as curl command: CURLOPT_COOKIELIST, "ALL".
    ClearAllCookies = 0,
    /// Clear session cookies. Same as curl command: CURLOPT_COOKIELIST, "SESS"
    ClearSessionCookies = 1,
    /// Flush cookies to file. Same as curl command: CURLOPT_COOKIELIST, "FLUSH".
    FlushCookiesToFile = 2,
    /// Reload cookies from file. Same as curl command: CURLOPT_COOKIELIST, "RELOAD".
    ReloadCookiesFromFile = 3,
}