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