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], }