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 RecordWriter<BookIds> for &[BookIds]
impl RecordWriter<BookIds> for &[BookIds]
fn write_to_row_group<W: Write + Send>( &self, row_group_writer: &mut SerializedRowGroupWriter<'_, W>, ) -> Result<(), ParquetError>
Auto Trait Implementations§
impl Freeze for BookIds
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