pub trait Data {
// Required methods
fn is_empty(&self) -> bool;
fn get(&self, tag: &Tag) -> Option<Result<Value<'_>>>;
fn iter(&self) -> Box<dyn Iterator<Item = Result<(Tag, Value<'_>)>> + '_>;
}
Expand description
Alignment record data.