pub enum Proxy {
IsAnError,
IsNotAProxy,
IsAProxy,
IsADataCenterIpAddress,
}Expand description
Proxy classification for an IP address.
Variants§
IsAnError
Lookup failed or record is in an error state.
IsNotAProxy
The IP is not a known proxy.
IsAProxy
The IP is a known proxy (VPN, open proxy, etc.).
IsADataCenterIpAddress
The IP belongs to a data center / hosting provider.
Trait Implementations§
impl StructuralPartialEq for Proxy
Auto Trait Implementations§
impl Freeze for Proxy
impl RefUnwindSafe for Proxy
impl Send for Proxy
impl Sync for Proxy
impl Unpin for Proxy
impl UnwindSafe for Proxy
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