Description:
This issue involves implementing functionality to strip the header from a TBE file in Rust, isolating it from the main data section. This capability is particularly useful when users need only the metadata information without processing the entire file, allowing for more efficient data handling and analysis.
Developer Notes:
- Implement a function, strip_header_from_tbe, that reads a TBE file and identifies the header section, which includes the global metadata.
- Utilize Rust data structures, such as HashMap<String, String> or a custom struct, to store the extracted metadata efficiently.
- Use Rust’s standard I/O libraries (std::fs::File, std::io::{BufReader, Read}) to read the TBE file efficiently.
Acceptance Criteria:
Description:
This issue involves implementing functionality to strip the header from a TBE file in Rust, isolating it from the main data section. This capability is particularly useful when users need only the metadata information without processing the entire file, allowing for more efficient data handling and analysis.
Developer Notes:
Acceptance Criteria: