Skip to main content

fits_io/fs/
file_progress.rs

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