[][src]Enum fastly::geo::ProxyDescription

pub enum ProxyDescription {
    Cloud,
    CloudSecurity,
    Dns,
    TorExit,
    TorRelay,
    Vpn,
    WebBrowser,
    Unknown,
}

Client proxy description.

Defaults to Unknown when an IP address is not known to be a proxy or VPN.

Variants

Cloud

Enables ubiquitous network access to a shared pool of configurable computing resources.

CloudSecurity

A host accessing the internet via a web security and data protection cloud provider.

Example providers with this type of service are Zscaler, Scansafe, and Onavo.

Dns

A proxy used by overriding the client's DNS value for an endpoint host to that of the proxy instead of the actual DNS value.

TorExit

The gateway nodes where encrypted or anonymous Tor traffic hits the internet.

TorRelay

Receives traffic on the Tor network and passes it along; also referred to as "routers".

Vpn

Virtual private network that encrypts and routes all traffic through the VPN server, including programs and applications.

WebBrowser

Connectivity that is taking place through mobile device web browser software that proxies the user through a centralized location.

Examples of such browsers are Opera mobile browsers and UCBrowser.

Unknown

An IP address that is not known to be a proxy or VPN.

Trait Implementations

impl Clone for ProxyDescription[src]

impl Copy for ProxyDescription[src]

impl Debug for ProxyDescription[src]

impl<'de> Deserialize<'de> for ProxyDescription[src]

impl Eq for ProxyDescription[src]

impl PartialEq<ProxyDescription> for ProxyDescription[src]

impl Serialize for ProxyDescription[src]

impl StructuralEq for ProxyDescription[src]

impl StructuralPartialEq for ProxyDescription[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.