pub trait KvStore: Send + Sync { // Required method fn get(&self, key: &[u8]) -> Option<&[u8]>; }
A trait for key-value store for Streams.
Streams