bakbon 0.1.2

BakBon is an infrastructure microkernel library in Rust that provides generic building blocks (Router, Registry, Balancer, Queue, Gateway, Cache, Middleware, Service/Processor) for message‑driven distributed systems.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::Result;

pub trait Storage {
    type Key: Send + Sync;
    type Value: Send + Sync;

    fn put(&mut self, key: &Self::Key, value: &Self::Value) -> Result<()>;
    fn get(&self, key: &Self::Key) -> Result<Option<Self::Value>>;
    fn delete(&mut self, key: &Self::Key) -> Result<()>;
    fn clear(&mut self) -> Result<()>;
}