pub struct WorkRecord {
pub work_id: i32,
pub title: Option<String>,
pub pub_year: Option<i16>,
pub pub_month: Option<u8>,
}
Expand description
Rows in the processed work Parquet table.
Fields§
§work_id: i32
§title: Option<String>
§pub_year: Option<i16>
§pub_month: Option<u8>
Trait Implementations§
Source§impl RecordWriter<WorkRecord> for &[WorkRecord]
impl RecordWriter<WorkRecord> for &[WorkRecord]
fn write_to_row_group<W: Write + Send>( &self, row_group_writer: &mut SerializedRowGroupWriter<'_, W>, ) -> Result<(), ParquetError>
Auto Trait Implementations§
impl Freeze for WorkRecord
impl RefUnwindSafe for WorkRecord
impl Send for WorkRecord
impl Sync for WorkRecord
impl Unpin for WorkRecord
impl UnwindSafe for WorkRecord
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