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
3
4
5
6
7
8
/// How far through a file a read has got.
#[derive(Debug, Clone, Copy)]
pub struct FileProgress {
    /// How many bytes there are to read in all.
    pub total_bytes: u64,
    /// How many have been read so far.
    pub bytes_read: u64,
}