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
use fixcol_derive::{ReadFixed, WriteFixed};

#[derive(ReadFixed, WriteFixed)]
#[repr(C)]
union MyUnion {
    f1: u32,
    f2: f32,
}

pub fn main() {}