//! Trait of auto-proxy I/O
/// Proxy I/O chooses bypass or proxy automatically
pubtraitAutoProxyIo{/// Check if the current connection is proxied
fnis_proxied(&self)->bool;/// Check if the current connection is bypassed
fnis_bypassed(&self)->bool{!self.is_proxied()}}