pub trait SessionCache: Send + Sync {
// Required methods
fn put(&self, key: Bytes, value: Bytes);
fn get(&self, key: Bytes) -> Option<Bytes>;
fn remove(&self, key: Bytes);
fn clear(&self);
}
Expand description
A client-side Session cache for the BoringSSL crypto provider.