cdf/lib.rs
1#![doc = include_str!("../README.md")]
2#![warn(missing_docs)]
3
4/// Module containing error definitions.
5pub mod error;
6
7/// General definitions for structures and traits for decoding CDF data.
8pub mod decode;
9
10/// Representation for different CDF types.
11pub mod repr;
12
13/// The CDF format contains fundamental types that are common to CDF files across different
14/// architectures.
15pub mod types;
16
17/// CDF records descriptions.
18pub mod record;
19
20/// The structure of the CDF file.
21pub mod cdf;