pub struct AuthorNameRec {
pub id: u32,
pub source: u8,
pub name: String,
}
Expand description
An author-name record in the extracted Parquet.
Fields§
§id: u32
§source: u8
§name: String
Trait Implementations§
Source§impl RecordWriter<AuthorNameRec> for &[AuthorNameRec]
impl RecordWriter<AuthorNameRec> for &[AuthorNameRec]
fn write_to_row_group<W: Write + Send>( &self, row_group_writer: &mut SerializedRowGroupWriter<'_, W>, ) -> Result<(), ParquetError>
Auto Trait Implementations§
impl Freeze for AuthorNameRec
impl RefUnwindSafe for AuthorNameRec
impl Send for AuthorNameRec
impl Sync for AuthorNameRec
impl Unpin for AuthorNameRec
impl UnwindSafe for AuthorNameRec
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