| 38 | |
| 39 | #[derive(Debug)] |
| 40 | pub enum Action { |
| 41 | Submit { |
| 42 | file: NamedTempFile, |
| 43 | // These need to be extracted |
| 44 | headers: BTreeMap<String, String>, |
| 45 | // amt: usize, |
| 46 | // hash_str: String, |
| 47 | cls: Classification, |
| 48 | }, |
| 49 | Update, |
| 50 | NotFound { |
| 51 | cls: Classification, |
| 52 | }, |
| 53 | } |
| 54 | |
| 55 | #[derive(Debug)] |
| 56 | pub struct PrefetchItem { |
nothing calls this directly
no outgoing calls
no test coverage detected