[][src]Struct ipinfo::IpDetails

pub struct IpDetails {
    pub ip: String,
    pub hostname: String,
    pub city: String,
    pub region: String,
    pub country: String,
    pub loc: String,
    pub postal: Option<String>,
    pub timezone: Option<String>,
    pub org: Option<String>,
    pub asn: Option<AsnDetails>,
    pub company: Option<CompanyDetails>,
    pub carrier: Option<CarrierDetails>,
    pub extra: HashMap<String, Value>,
}

IP address lookup details.

Fields

ip: String

The IP address.

hostname: String

The reverse DNS lookup hostname of the IP address.

city: String

The city for the IP address.

region: String

The region for the IP address.

country: String

The country for the IP address.

loc: String

The geographical location for the IP address.

postal: Option<String>

The postal code for the IP address.

timezone: Option<String>

The timezone for the IP address.

org: Option<String>

The organization for the IP address.

asn: Option<AsnDetails>

The AS details the IP address is part of.

company: Option<CompanyDetails>

The company details that owns this IP address.

carrier: Option<CarrierDetails>

The carrier details that owns this mobile IP address.

extra: HashMap<String, Value>

Trait Implementations

impl Clone for IpDetails[src]

impl Debug for IpDetails[src]

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

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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

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

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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