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