pub enum ProxyType {
Residential,
ResidentialFast,
ResidentialStatic,
Mobile,
Isp,
ResidentialPremium,
ResidentialCore,
ResidentialPlus,
}Expand description
Proxy pool selection for outbound request routing. Choose a pool based on your use case (e.g., stealth, speed, or stability).
- ‘residential’ → cost-effective entry-level residential pool
- ‘residential_fast’ → faster residential pool for higher throughput
- ‘residential_static’ → static residential IPs, rotated daily
- ‘residential_premium’ → low-latency premium IPs
- ‘residential_core’ → balanced plan (quality vs. cost)
- ‘residential_plus’ → largest and highest quality core pool
- ‘mobile’ → 4G/5G mobile proxies for maximum evasion
- ‘isp’ → ISP-grade datacenters
Variants§
Residential
Cost-effective entry-level residential pool.
ResidentialFast
Higher-throughput residential pool for better performance.
ResidentialStatic
Static residential IPs, rotated daily for session persistence.
Mobile
4G / 5G mobile proxies for maximum stealth and evasion.
Isp
ISP-grade residential routing (alias: datacenter).
ResidentialPremium
Premium low-latency residential proxy pool.
ResidentialCore
Core residential plan optimized for balance between cost and quality.
ResidentialPlus
Extended core residential pool with the largest, highest-quality IPs.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ProxyType
impl<'de> Deserialize<'de> for ProxyType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for ProxyType
impl Eq for ProxyType
impl StructuralPartialEq for ProxyType
Auto Trait Implementations§
impl Freeze for ProxyType
impl RefUnwindSafe for ProxyType
impl Send for ProxyType
impl Sync for ProxyType
impl Unpin for ProxyType
impl UnwindSafe for ProxyType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.