[][src]Struct kv::Manager

pub struct Manager { /* fields omitted */ }

A process is only permitted to have one open handle to each database. This manager exists to enforce that constraint: don't open databases directly.

Methods

impl Manager[src]

pub fn new() -> Manager[src]

Create a new store manager

pub fn get<P>(&self, path: P) -> Result<Option<Arc<RwLock<Store>>>, Error> where
    P: AsRef<Path>, 
[src]

Return the open store at path, returning None if it has not already been opened.

pub fn open(&mut self, cfg: Config) -> Result<Arc<RwLock<Store>>, Error>[src]

Return the open store at cfg.path, or create it using the given config.

pub fn load_config_and_open<P>(
    &mut self,
    path: P
) -> Result<Arc<RwLock<Store>>, Error> where
    P: AsRef<Path>, 
[src]

Load a store from a configuration file

Trait Implementations

impl Default for Manager[src]

Auto Trait Implementations

impl Send for Manager

impl Unpin for Manager

impl Sync for Manager

impl UnwindSafe for Manager

impl RefUnwindSafe for Manager

Blanket Implementations

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.

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

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

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