fits-io 0.2.0

A pure-Rust FITS file reading and writing library inspired by CFITSIO, focused on safety, clarity, and performance.
Documentation
1
2
/// A result whose error is this crate's [`Error`](crate::Error).
pub type Result<T> = std::result::Result<T, crate::error::Error>;