1 2 3 4 5 6 7 8 9 10 11
//! Handling of file [metadata](https://github.com/jiricekcz/fef-specification/blob/main/metadata/Metadata.md). pub mod error; mod header; mod record; mod records; pub(crate) mod traits; pub use header::MetadataHeader; pub use record::MetadataRecord; pub use records::*;