| 129 | /// ``` |
| 130 | #[derive(Clone)] |
| 131 | pub 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 | |
| 139 | impl fmt::Debug for QuickManager { |
| 140 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected