MCPcopy Create free account
hub / github.com/06chaynes/http-cache / QuickManager

Class QuickManager

http-cache-quickcache/src/lib.rs:131–137  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

129/// ```
130#[derive(Clone)]
131pub struct QuickManager {
132 /// The underlying QuickCache instance.
133 ///
134 /// This is wrapped in an `Arc` to allow sharing across threads while
135 /// maintaining the `Clone` implementation for the manager.
136 cache: Arc<Cache<String, Arc<Vec<u8>>>>,
137}
138
139impl fmt::Debug for QuickManager {
140 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected