marc 3.1.1

Reader and builder for MARC 21 Bibliographic format
1
2
3
4
5
6
7
8
use crate::tag::Tag;

/// View into a subfield of a MARC field
pub struct Subfield<'a> {
    tag: Tag,
    identifier: u8,
    data: &'a [u8],
}