| 230 | } |
| 231 | |
| 232 | pub struct Cache { |
| 233 | pri_cache: ArcDiskCache<PathBuf, Status>, |
| 234 | bloom: Mutex<Bloom<Path>>, |
| 235 | |
| 236 | default_backend: Backend, |
| 237 | backends: Vec<Backend>, |
| 238 | |
| 239 | pub submit_tx: Sender<CacheMeta>, |
| 240 | } |
| 241 | |
| 242 | impl Cache { |
| 243 | pub fn new( |
nothing calls this directly
no outgoing calls
no test coverage detected