[][src]Struct maxminddb::Reader

pub struct Reader<S: AsRef<[u8]>> {
    pub metadata: Metadata,
    // some fields omitted
}

A reader for the MaxMind DB format. The lifetime 'data is tied to the lifetime of the underlying buffer holding the contents of the database file.

Fields

metadata: Metadata

Implementations

impl<'de> Reader<Vec<u8>>[src]

pub fn open_readfile<P: AsRef<Path>>(
    database: P
) -> Result<Reader<Vec<u8>>, MaxMindDBError>
[src]

Open a MaxMind DB database file by loading it into memory.

Example

let reader = maxminddb::Reader::open_readfile("test-data/test-data/GeoIP2-City-Test.mmdb").unwrap();

impl<'de, S: AsRef<[u8]>> Reader<S>[src]

pub fn from_source(buf: S) -> Result<Reader<S>, MaxMindDBError>[src]

Open a MaxMind DB database from anything that implements AsRef<u8>

Example

use std::fs;
let buf = fs::read("test-data/test-data/GeoIP2-City-Test.mmdb").unwrap();
let reader = maxminddb::Reader::from_source(buf).unwrap();

pub fn lookup<T>(&'de self, address: IpAddr) -> Result<T, MaxMindDBError> where
    T: Deserialize<'de>, 
[src]

Lookup the socket address in the opened MaxMind DB

Example:

use maxminddb::geoip2;
use std::net::IpAddr;
use std::str::FromStr;

let reader = maxminddb::Reader::open_readfile("test-data/test-data/GeoIP2-City-Test.mmdb").unwrap();

let ip: IpAddr = FromStr::from_str("89.160.20.128").unwrap();
let city: geoip2::City = reader.lookup(ip).unwrap();
print!("{:?}", city);

Auto Trait Implementations

impl<S> RefUnwindSafe for Reader<S> where
    S: RefUnwindSafe
[src]

impl<S> Send for Reader<S> where
    S: Send
[src]

impl<S> Sync for Reader<S> where
    S: Sync
[src]

impl<S> Unpin for Reader<S> where
    S: Unpin
[src]

impl<S> UnwindSafe for Reader<S> where
    S: UnwindSafe
[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> 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.