docs.rs failed to build fixcol-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
fixcol-0.2.0
Fixed
A library for reading fixed width / column delimited data files.
Basic Usage
Consider the following data file:
Tokyo 13515271 35.689 139.692
Delhi 16753235 28.610 77.230
Shanghai 24870895 31.229 121.475
São Paulo 12252023 -23.550 -46.333
Mexico City 9209944 19.433 -99.133
We can create a basic data structure corresponding to the records in the file and then read the data file as shown.
use ReadFixed;
use File;
let mut file = open;
let cities: = read_fixed_all.map.collect;
Please see the official documentation for complete usage guidance.
Wishlist of new features
- Fixed column offsets
- Better error messages for writing operations
- Make param list data rather than code to support dynamic lists of valid parameters.
- Allow a function based custom deserialization on individual columns
- Clear error messages of location of error on read errors
- Enable the
ignore_othersparameter
License
Licensed under the MIT license. See: [LICENSE.txt].