MCPcopy Create free account
hub / github.com/ddd/gpb / CsvHit

Class CsvHit

src/csv/parser.rs:19–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17// Structure to represent a processed hit
18#[derive(Clone, Debug, Serialize)]
19pub struct CsvHit {
20 pub identifier: String,
21 pub phone: String,
22 pub first_name: String,
23 pub last_name: String,
24}
25
26// Parse CSV input file containing masked numbers using csv library
27pub async fn parse_csv_input(file_path: &str) -> Result<Vec<CsvRecord>, Error> {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected