Crates.io | bytecon_data_store |
lib.rs | bytecon_data_store |
version | 0.1.1 |
source | src |
created_at | 2024-11-17 20:50:44.283511 |
updated_at | 2024-11-22 06:10:08.058512 |
description | A library for storing ByteConverter implementations conveniently. |
homepage | |
repository | https://github.com/AustinHellerRepo/bytecon_data_store.git |
max_upload_size | |
id | 1451545 |
size | 112,926 |
This library contains a DataStore
trait for interacting with data storage generally along with a few different specific implementations.
ByteConverter
to storage while also being easily retrievable."postgres"
feature."directory"
feature."remote"
feature.ByteConDataStore
for sending ByteConverter
instances into any DataStore
that sends Vec<u8>
.You will want to convert your ByteConverter
instances to Vec<u8>
to utilize the existing implementations. This design choice was made to allow for your ByteConverter
-implementing structs to not need to implement Send or Sync.