[][src]Struct phonenumber::metadata::Database

pub struct Database { /* fields omitted */ }

Representation of a database of metadata for phone number.

Implementations

impl Database[src]

pub fn load<P: AsRef<Path>>(path: P) -> Result<Self, LoadMetadata>[src]

Load a database from the given file.

pub fn parse<S: AsRef<str>>(content: S) -> Result<Self, LoadMetadata>[src]

Parse a database from the given string.

pub fn from(meta: Vec<Metadata>) -> Result<Self, LoadMetadata>[src]

Create a database from a loaded database.

pub fn cache(&self) -> Arc<Mutex<RegexCache>>[src]

Get the regular expression cache.

pub fn by_id<Q: ?Sized>(&self, key: &Q) -> Option<&Metadata> where
    Q: Hash + Eq,
    String: Borrow<Q>, 
[src]

Get a metadata entry by country ID.

pub fn by_code<Q: ?Sized>(&self, key: &Q) -> Option<Vec<&Metadata>> where
    Q: Hash + Eq,
    u16: Borrow<Q>, 
[src]

Get metadata entries by country code.

pub fn region<Q: ?Sized>(&self, code: &Q) -> Option<Vec<&str>> where
    Q: Hash + Eq,
    u16: Borrow<Q>, 
[src]

Get all country IDs corresponding to the given country code.

Trait Implementations

impl Clone for Database[src]

impl Debug for Database[src]

Auto Trait Implementations

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> 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.