[−][src]Struct casper_execution_engine::storage::protocol_data_store::lmdb::LmdbProtocolDataStore
An LMDB-backed protocol data store.
Wraps lmdb::Database
.
Implementations
impl LmdbProtocolDataStore
[src]
pub fn new(
env: &LmdbEnvironment,
maybe_name: Option<&str>,
flags: DatabaseFlags
) -> Result<Self, Error>
[src]
env: &LmdbEnvironment,
maybe_name: Option<&str>,
flags: DatabaseFlags
) -> Result<Self, Error>
pub fn open(
env: &LmdbEnvironment,
maybe_name: Option<&str>
) -> Result<Self, Error>
[src]
env: &LmdbEnvironment,
maybe_name: Option<&str>
) -> Result<Self, Error>
Trait Implementations
impl Clone for LmdbProtocolDataStore
[src]
pub fn clone(&self) -> LmdbProtocolDataStore
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for LmdbProtocolDataStore
[src]
impl ProtocolDataStore for LmdbProtocolDataStore
[src]
impl Store<ProtocolVersion, ProtocolData> for LmdbProtocolDataStore
[src]
type Error = Error
type Handle = Database
pub fn handle(&self) -> Self::Handle
[src]
pub fn get<T>(&self, txn: &T, key: &K) -> Result<Option<V>, Self::Error> where
T: Readable<Handle = Self::Handle>,
K: ToBytes,
V: FromBytes,
Self::Error: From<T::Error>,
[src]
T: Readable<Handle = Self::Handle>,
K: ToBytes,
V: FromBytes,
Self::Error: From<T::Error>,
pub fn put<T>(&self, txn: &mut T, key: &K, value: &V) -> Result<(), Self::Error> where
T: Writable<Handle = Self::Handle>,
K: ToBytes,
V: ToBytes,
Self::Error: From<T::Error>,
[src]
T: Writable<Handle = Self::Handle>,
K: ToBytes,
V: ToBytes,
Self::Error: From<T::Error>,
Auto Trait Implementations
impl RefUnwindSafe for LmdbProtocolDataStore
[src]
impl Send for LmdbProtocolDataStore
[src]
impl Sync for LmdbProtocolDataStore
[src]
impl Unpin for LmdbProtocolDataStore
[src]
impl UnwindSafe for LmdbProtocolDataStore
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DynClone for T where
T: Clone,
[src]
T: Clone,
pub fn __clone_box(&self, Private) -> *mut ()
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,