Struct bookdata::marc::book_fields::BookIds
source · struct BookIds {
rec_id: u32,
marc_cn: String,
lccn: Option<String>,
status: u8,
rec_type: u8,
bib_level: u8,
}
Expand description
Structure recording book identifiers from a MARC field.
Fields§
§rec_id: u32
§marc_cn: String
§lccn: Option<String>
§status: u8
§rec_type: u8
§bib_level: u8
Trait Implementations§
source§impl FrameBuilder<BookIds> for BookIdsFrameBuilder
impl FrameBuilder<BookIds> for BookIdsFrameBuilder
source§fn with_capacity(cap: usize) -> Self
fn with_capacity(cap: usize) -> Self
Instantiate a frame builder with a specified capacity.
source§fn append_row(&mut self, row: BookIds)
fn append_row(&mut self, row: BookIds)
Add a row to the frame builder.
source§fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = R>,
fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = R>,
Add an iterable of items to the frame.
source§impl<'a> FrameStruct<'a, BookIds> for BookIdsFrame<'a>
impl<'a> FrameStruct<'a, BookIds> for BookIdsFrame<'a>
Auto Trait Implementations§
impl RefUnwindSafe for BookIds
impl Send for BookIds
impl Sync for BookIds
impl Unpin for BookIds
impl UnwindSafe for BookIds
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