/
germanubis
/
rust-csv
Обзор
Документация
Войти
/
germanubis
/
rust-csv
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/tutorial-error-02.rs
17 строк
517 B
Andrew Gallant
*: fix all warnings and update code
14 фев 2023, 05:31
14 фев 2023, 05:31
ea0273c
Код
Авторство
О чём код?
use std::{io, process}; fn main() { let mut rdr = csv::Reader::from_reader(io::stdin()); for result in rdr.records() { // Examine our Result. // If there was no problem, print the record. // Otherwise, print the error message and quit the program. match result { Ok(record) => println!("{:?}", record), Err(err) => { println!("error reading CSV from <stdin>: {}", err); process::exit(1); } } } }