Expand description
This module forms the access layer of the backend which holds the contracts of unified database access operations across all the backends and Bee types.
Traitsยง
- AsIterator
AsIterator<'a, K, V>trait extends theStorageBackendwithiteroperation for the (key: K, value: V) pair; therefore, it should be explicitly implemented for the correspondingStorageBackend.- Batch
Batch<K, V>trait extends theStorageBackendwith batch operations for the (key: K, value: V) pair; therefore, it should be explicitly implemented for the correspondingStorageBackend.- Batch
Builder BatchBuildertrait extends theStorageBackendwith batch builder functionality; therefore it should be explicitly implemented for the correspondingStorageBackend.- Delete
Delete<K, V>trait extends theStorageBackendwithdeleteoperation for the (key: K, value: V) pair; therefore, it should be explicitly implemented for the correspondingStorageBackend.- Exist
Exist<K, V>trait extends theStorageBackendwithexistoperation for the (key: K, value: V) pair; therefore, it should be explicitly implemented for the correspondingStorageBackend.- Fetch
Fetch<K, V>trait extends theStorageBackendwithfetchoperation for the (key: K, value: V pair); therefore, it should be explicitly implemented for the correspondingStorageBackend.- Insert
Insert<K, V>trait extends theStorageBackendwithinsertoperation for the (key: K, value: V) pair; therefore, it should be explicitly implemented for the correspondingStorageBackend.- Insert
Strict InsertStrict<K, V>trait extends theStorageBackendwithinsert_strictoperation for the (key: K, value: V) pair; therefore, it should be explicitly implemented for the correspondingStorageBackend.- Multi
Fetch MultiFetch<'a, K, V>trait extends theStorageBackendwithmulti_fetchoperation for the (key: K, value: V) pair; therefore, it should be explicitly implemented for the correspondingStorageBackend.- Truncate
Truncate<K, V>trait extends theStorageBackendwithtruncateoperation for the (key: K, value: V) pair; therefore, it should be explicitly implemented for the correspondingStorageBackend.- Update
Update<K, V>trait extends theStorageBackendwithupdateoperation for the (key: K, value: V) pair; therefore, it should be explicitly implemented for the correspondingStorageBackend.