[][src]Struct binstore::db::Db

pub struct Db {
    pub root: PathBuf,
    // some fields omitted
}

A Database consists of multiple buckets; each indexed by a Date.

Fields

root: PathBuf

Methods

impl Db[src]

pub fn new<P: AsRef<Path>>(root: P) -> Db[src]

pub fn open<P: AsRef<Path>>(root: P) -> Result<Db>[src]

pub fn query(
    &mut self,
    hash: HashedKey,
    start_date: Date<Local>,
    end_date: Date<Local>
) -> Result<Vec<Value>>
[src]

pub fn len(&self) -> usize[src]

Auto Trait Implementations

impl Send for Db

impl Unpin for Db

impl Sync for Db

impl RefUnwindSafe for Db

impl UnwindSafe for Db

Blanket Implementations

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

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

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

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

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