fits-io 0.1.0

A pure-Rust FITS file handling library inspired by CFITSIO, focused on safety, clarity, and performance.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Structs for working with FITS Bin Tables

mod row;
mod value;

mod bin_table;
#[cfg(feature = "serde")]
mod to_bin_table;

pub use self::bin_table::BinTable;
pub use self::row::Row;
pub use self::value::Value;

#[cfg(feature = "serde")]
pub use self::to_bin_table::to_bin_table;