fixcol 0.2.0

A library for reading and writing fixed width / column delimited data files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use fixcol::{ReadFixed, WriteFixed};

#[derive(ReadFixed, WriteFixed)]
struct Point {
    #[fixcol(width = 5)]
    point_x: u16,
    #[fixcol(width = 5)]
    point_y: u16,
}

fn main() {}