| 54 | |
| 55 | #[derive(Debug)] |
| 56 | pub struct PrefetchItem { |
| 57 | pub fetch_url: Url, |
| 58 | pub cache_key: PathBuf, |
| 59 | pub tmp_file: NamedTempFile, |
| 60 | pub cls: Classification, |
| 61 | } |
| 62 | |
| 63 | pub enum CacheDecision { |
| 64 | // We can't cache this, stream it from a remote. |
nothing calls this directly
no outgoing calls
no test coverage detected