Expand description
Binary blob storage
This module contains binary storage provided by the BlobStoreInterface trait. The default implementation provided here is BlobStoreFS, but you may provide your own.
A blob store database implementing BlobStoreInterface has different key-value tables which are static strings (BlobTable). For example, TABLE_AVATAR is a such table for storing avatars. Each table implements the BlobTableInterface for getting or setting values.
use xmpp::store::{BlobStoreFS, TABLE_AVATAR, BlobStoreInterface};
#[tokio::main]
async fn main() {
let store = BlobStoreFS::new("data".into()).await.unwrap();
let avatars = store.table(&TABLE_AVATAR).await.unwrap();
let room_avatar = avatars.get("chat@xmpp.rs").await.unwrap();
}
Structs
- A unique entry in the data store, in a specific
BlobTable
.
Constants
Traits
- The trait for data stores to implement. Allows accessing tables using a unique
BlobTable
identifier. - The trait for data store tables where key/values are stored. Entry keys are string typed.