Type Alias async_skipdb::comparable::AsyncStdComparableDb
source · pub type AsyncStdComparableDb<K, V> = ComparableDb<K, V, AsyncStdSpawner>;Available on crate feature
async-std only.Expand description
Database for async-std runtime.
Aliased Type§
struct AsyncStdComparableDb<K, V> { /* private fields */ }Implementations
source§impl<K, V, S> ComparableDb<K, V, S>
impl<K, V, S> ComparableDb<K, V, S>
sourcepub async fn write(&self) -> WriteTransaction<K, V, S>
pub async fn write(&self) -> WriteTransaction<K, V, S>
Create a write transaction.
source§impl<K, V, S> ComparableDb<K, V, S>
impl<K, V, S> ComparableDb<K, V, S>
source§impl<K, V, S: AsyncSpawner> ComparableDb<K, V, S>
impl<K, V, S: AsyncSpawner> ComparableDb<K, V, S>
source§impl<K, V, S: AsyncSpawner> ComparableDb<K, V, S>
impl<K, V, S: AsyncSpawner> ComparableDb<K, V, S>
sourcepub async fn read(
&self
) -> ReadTransaction<K, V, ComparableDb<K, V, S>, BTreeCm<K>, S>
pub async fn read( &self ) -> ReadTransaction<K, V, ComparableDb<K, V, S>, BTreeCm<K>, S>
Create a read transaction.