| 8 | // Structure to represent a CSV record with serde support |
| 9 | #[derive(Clone, Debug, Deserialize, Serialize)] |
| 10 | pub struct CsvRecord { |
| 11 | pub identifier: String, |
| 12 | pub masked_number: String, |
| 13 | pub first_name: String, |
| 14 | pub last_name: String, |
| 15 | } |
| 16 | |
| 17 | // Structure to represent a processed hit |
| 18 | #[derive(Clone, Debug, Serialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected