pub struct ControlField {
pub tag: FieldTag,
pub data: String,
}Expand description
The first fields of a MARC record represent control data. Unlike the variable data fields, they are simple blob of ASCII content, although some of them are encoded with a specific scheme (for example, some of them are pipe-separated values)
Fields§
§tag: FieldTag§data: StringTrait Implementations§
Source§impl Debug for ControlField
impl Debug for ControlField
Source§impl PartialEq for ControlField
impl PartialEq for ControlField
impl Eq for ControlField
impl StructuralPartialEq for ControlField
Auto Trait Implementations§
impl Freeze for ControlField
impl RefUnwindSafe for ControlField
impl Send for ControlField
impl Sync for ControlField
impl Unpin for ControlField
impl UnwindSafe for ControlField
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