[][src]Struct geoip_rs::GeoIPDB

pub struct GeoIPDB { /* fields omitted */ }

GeoIPDB is the struct holding both blocks (ip networks and their coordinates) and locations (contintent, country, etc corresponding to some coordinates)

Methods

impl GeoIPDB[src]

pub fn new<R: Read + Sized>(blocks_csv_file: R, locations_csv_file: R) -> Self[src]

Creates a new GeoIPDB by parsing and loading the contents of a blocks CSV file and a location CSV file

pub fn resolve(&self, ip_address: &str) -> Option<&Block>[src]

Looks for the given ip address in the db, returning the corresponding block, if any

pub fn get_location(&self, geoname_id: u32) -> &Location[src]

Returns the location corresponding to the given id

Trait Implementations

impl Debug for GeoIPDB[src]

Auto Trait Implementations

impl Send for GeoIPDB

impl Sync for GeoIPDB

Blanket Implementations

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

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

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

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