Struct lmdb::InactiveTransaction[][src]

pub struct InactiveTransaction<'env> { /* fields omitted */ }

An inactive read-only transaction.

Implementations

impl<'env> InactiveTransaction<'env>[src]

pub fn renew(self) -> Result<RoTransaction<'env>>[src]

Renews the inactive transaction, returning an active read-only transaction.

This acquires a new reader lock for a transaction handle that had been released by RoTransaction::reset.

Trait Implementations

impl<'env> Debug for InactiveTransaction<'env>[src]

impl<'env> Drop for InactiveTransaction<'env>[src]

Auto Trait Implementations

impl<'env> RefUnwindSafe for InactiveTransaction<'env>[src]

impl<'env> !Send for InactiveTransaction<'env>[src]

impl<'env> !Sync for InactiveTransaction<'env>[src]

impl<'env> Unpin for InactiveTransaction<'env>[src]

impl<'env> UnwindSafe for InactiveTransaction<'env>[src]

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.