[][src]Struct maxminddb::geoip2::AnonymousIp

pub struct AnonymousIp {
    pub is_anonymous: Option<bool>,
    pub is_anonymous_vpn: Option<bool>,
    pub is_hosting_provider: Option<bool>,
    pub is_public_proxy: Option<bool>,
    pub is_tor_exit_node: Option<bool>,
}

GeoIP2 Anonymous Ip record

Fields

is_anonymous: Option<bool>is_anonymous_vpn: Option<bool>is_hosting_provider: Option<bool>is_public_proxy: Option<bool>is_tor_exit_node: Option<bool>

Trait Implementations

impl Clone for AnonymousIp[src]

impl Debug for AnonymousIp[src]

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

impl Serialize for AnonymousIp[src]

Auto Trait Implementations

impl RefUnwindSafe for AnonymousIp[src]

impl Send for AnonymousIp[src]

impl Sync for AnonymousIp[src]

impl Unpin for AnonymousIp[src]

impl UnwindSafe for AnonymousIp[src]

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.