[][src]Struct geoip::GeoIp

pub struct GeoIp { /* fields omitted */ }

Methods

impl GeoIp[src]

pub fn open(path: &Path, options: Options) -> Result<GeoIp, OpenPathError>[src]

pub fn open_type(
    db_type: DBType,
    options: Options
) -> Result<GeoIp, OpenTypeError>
[src]

pub fn info(&self) -> Result<String, ReadInfoError>[src]

pub fn city_info_by_ip(&self, ip: IpAddr) -> Option<CityInfo>[src]

pub fn region_name_by_code(
    country_code: &str,
    region_code: &str
) -> Option<&'static str>
[src]

pub fn time_zone_by_country_and_region(
    country_code: &str,
    region_code: &str
) -> Option<&'static str>
[src]

pub fn as_info_by_ip(&self, ip: IpAddr) -> Option<ASInfo>[src]

Trait Implementations

impl Drop for GeoIp[src]

impl Debug for GeoIp[src]

Auto Trait Implementations

impl !Send for GeoIp

impl !Sync for GeoIp

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.