adguard-flm 2.6.0

This crate represents a library for managing AdGuard filter lists
Documentation
1
2
3
4
5
6
7
8
9
/// Proxy mode of operation for requests
pub enum RequestProxyMode {
    /// System proxy will be used
    UseSystemProxy,
    /// All proxies disabled
    NoProxy,
    /// Use custom proxy
    UseCustomProxy { addr: String },
}