reqwest-proxy-pool 0.4.0

proxy pool middleware for reqwest
Documentation
1
2
3
4
5
6
7
8
//! Error types for the reqwest-proxy-pool crate.

use thiserror::Error;

/// Error returned when no healthy proxy is available in the pool.
#[derive(Debug, Error)]
#[error("No proxy available in pool")]
pub struct NoProxyAvailable;