1
2
3
4
5
6
7
//! Alignment record data field.

pub mod tag;
mod ty;
pub mod value;

pub use self::{tag::Tag, ty::Type, value::Value};