pub trait AutoProxyIo {
    fn is_proxied(&self) -> bool;

    fn is_bypassed(&self) -> bool { ... }
}
Expand description

Proxy I/O chooses bypass or proxy automatically

Required methods

Check if the current connection is proxied

Provided methods

Check if the current connection is bypassed

Implementors