//! `ProxyEnv` reads the `*_proxy` environment variables once, as a static snapshot.
//!
//! Unlike `ProxyWatcher`, `ProxyEnv` does **not** implement `Stream`:
//! environment variables cannot be changed from outside the process, so there is
//! nothing to watch. Run with:
//!
//! ```text
//! http_proxy=http://proxy.example:8080 no_proxy=localhost,*.internal cargo run --example env
//! ```
use ProxyEnv;