Crate tabfile

Source
Expand description

Convenient reading from a tab-separated text file

This crate allows you to create a for-loop-compatible iterator over the lines of a tab-separated file. Each lines is returned as a Record which contains the original line and gives you access to the individual fields from that line.

See Tabfile’s documentation to see how to use this crate.

Structs§

Record
One line from a tab-separated file.
RowIterator
Iterator over the lines of a tab file.
Tabfile
A read-only open handle for a tab-separated file.