1//! Error types for the reqwest-proxy-pool crate. 2 3use thiserror::Error; 4 5/// Error returned when no healthy proxy is available in the pool. 6#[derive(Debug, Error)] 7#[error("No proxy available in pool")] 8pub struct NoProxyAvailable;