Struct gv100ad::db::Database[][src]

pub struct Database { /* fields omitted */ }

A (in-memory) database that stores GV100AD data for querying.

Implementations

impl Database[src]

pub fn from_reader<R: BufRead>(reader: R) -> Result<Self, Error>[src]

Create database from a buffered reader.

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

Create database from GV100AD file at path.

pub fn from_parser<R: BufRead>(parser: Parser<R>) -> Result<Self, Error>[src]

Create database from GV100AD parser.

pub fn insert(&mut self, datensatz: Datensatz)[src]

pub fn regional_to_gemeinde_schluessel(
    &self,
    regional_schluessel: RegionalSchluessel
) -> Option<GemeindeSchluessel>
[src]

pub fn get<K, V>(&self, k: K) -> Option<&V> where
    V: Lookup<K>, 
[src]

pub fn all<'a, V>(&'a self) -> V::Iter where
    V: IterAll<'a>, 
[src]

pub fn children<'a, K, V>(&'a self, k: K) -> impl Iterator<Item = &V> where
    V: IterChildrenOf<'a>,
    K: IntoRangeKey<V::Key>, 
[src]

Trait Implementations

impl Clone for Database[src]

impl Debug for Database[src]

impl Default 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> Instrument 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.