Struct ipdb::reader::DistrictInfo[][src]

pub struct DistrictInfo<'a> {
    pub country_name: &'a str,
    pub region_name: &'a str,
    pub city_name: &'a str,
    pub owner_domain: &'a str,
    pub isp_domain: &'a str,
    pub latitude: &'a str,
    pub longitude: &'a str,
}

Fields

country_name: &'a strregion_name: &'a strcity_name: &'a strowner_domain: &'a strisp_domain: &'a strlatitude: &'a strlongitude: &'a str

Trait Implementations

impl<'a> Debug for DistrictInfo<'a>[src]

impl<'a> From<Vec<&'a str, Global>> for DistrictInfo<'a>[src]

impl<'a> Serialize for DistrictInfo<'a>[src]

impl<'a> ToString for DistrictInfo<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for DistrictInfo<'a>

impl<'a> Send for DistrictInfo<'a>

impl<'a> Sync for DistrictInfo<'a>

impl<'a> Unpin for DistrictInfo<'a>

impl<'a> UnwindSafe for DistrictInfo<'a>

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> From<T> for T[src]

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

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.