[][src]Struct rkv::Manager

pub struct Manager<E> { /* fields omitted */ }

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

Implementations

impl<E> Manager<E>[src]

pub fn get<'p, P>(
    &self,
    path: P
) -> Result<Option<Arc<RwLock<Rkv<E>>>>, StoreError> where
    P: Into<&'p Path>, 
[src]

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

pub fn get_or_create<'p, F, P>(
    &mut self,
    path: P,
    f: F
) -> Result<Arc<RwLock<Rkv<E>>>, StoreError> where
    F: FnOnce(&Path) -> Result<Rkv<E>, StoreError>,
    P: Into<&'p Path>, 
[src]

Return the open env at path, or create it by calling f.

pub fn get_or_create_with_capacity<'p, F, P>(
    &mut self,
    path: P,
    capacity: c_uint,
    f: F
) -> Result<Arc<RwLock<Rkv<E>>>, StoreError> where
    F: FnOnce(&Path, c_uint) -> Result<Rkv<E>, StoreError>,
    P: Into<&'p Path>, 
[src]

Return the open env at path with capacity, or create it by calling f.

impl Manager<LmdbEnvironment>[src]

impl Manager<SafeModeEnvironment>[src]

Auto Trait Implementations

impl<E> RefUnwindSafe for Manager<E>

impl<E> Send for Manager<E> where
    E: Send + Sync

impl<E> Sync for Manager<E> where
    E: Send + Sync

impl<E> Unpin for Manager<E>

impl<E> UnwindSafe for Manager<E>

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.