pub struct DataField {
pub tag: FieldTag,
pub indicator: Vec<char>,
pub subfields: Vec<Subfield>,
}Expand description
One of the variable data fields representing the bulk of the information found in the MARC record. The tag along with the indicators (of which there are typically 2) help figure out the specific meaning of the data found within the subfields or blocks of content.
Fields§
§tag: FieldTag§indicator: Vec<char>§subfields: Vec<Subfield>Trait Implementations§
impl Eq for DataField
impl StructuralPartialEq for DataField
Auto Trait Implementations§
impl Freeze for DataField
impl RefUnwindSafe for DataField
impl Send for DataField
impl Sync for DataField
impl Unpin for DataField
impl UnwindSafe for DataField
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more