Skip to content

Commit

Permalink
code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ph0llux committed Nov 25, 2023
1 parent 83faad8 commit d2159f5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/lib/footer/file_footer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,21 +38,21 @@ use serde::{
#[cfg_attr(feature = "serde", derive(Serialize))]
pub struct FileFooter {
/// the version of the [FileFooter].
version: u8,
pub version: u8,
/// the appropriate file number.
file_number: u64,
pub file_number: u64,
/// the acquisition start time for this file.
acquisition_start: u64,
pub acquisition_start: u64,
/// the acquisition end/finish time for this file.
acquisition_end: u64,
pub acquisition_end: u64,
/// The appropriate hash header for this file.
hash_header: HashHeader,
pub hash_header: HashHeader,
/// the first chunk number which was used for this file.
first_chunk_number: u64,
pub first_chunk_number: u64,
/// The full number of chunks for this file.
number_of_chunks: u64,
pub number_of_chunks: u64,
/// the original (uncompressed & unencrypted) length of the file.
length_of_data: u64,
pub length_of_data: u64,
}

impl FileFooter {
Expand Down

0 comments on commit d2159f5

Please sign in to comment.