struct AuthRec {
rec_id: u32,
author_name: String,
}
Expand description
Structure recording a record’s author field.
Fields§
§rec_id: u32
Trait Implementations§
Source§impl RecordWriter<AuthRec> for &[AuthRec]
impl RecordWriter<AuthRec> for &[AuthRec]
fn write_to_row_group<W: Write + Send>( &self, row_group_writer: &mut SerializedRowGroupWriter<'_, W>, ) -> Result<(), ParquetError>
Auto Trait Implementations§
impl Freeze for AuthRec
impl RefUnwindSafe for AuthRec
impl Send for AuthRec
impl Sync for AuthRec
impl Unpin for AuthRec
impl UnwindSafe for AuthRec
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