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