Type Definition radixdb::store::DynBlobStore

source · []
pub type DynBlobStore = Arc<dyn BlobStore<Error = Error>>;
Expand description

Type for a dynamic blob store

Uses Arc so the dynamic reference can be cheaply cloned.

Trait Implementations

The error. Use NoError for a store that can never fail
Read a blob with the given id. Since ids can be of arbitrary size, passed as a slice
Write a blob, returning an id into a target vec tgt. Read more
Ensure all data is persisted
True if the store needs deep detach. This is true for basically all stores except the special NoStore store