pub(crate) struct ARecordWithRawIdentifiers {
pub type: i32,
pub count: i32,
}Fields§
§type: i32§count: i32Trait Implementations§
Source§impl Debug for ARecordWithRawIdentifiers
impl Debug for ARecordWithRawIdentifiers
Source§impl PartialEq for ARecordWithRawIdentifiers
impl PartialEq for ARecordWithRawIdentifiers
Source§fn eq(&self, other: &ARecordWithRawIdentifiers) -> bool
fn eq(&self, other: &ARecordWithRawIdentifiers) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl RecordReader<ARecordWithRawIdentifiers> for Vec<ARecordWithRawIdentifiers>
impl RecordReader<ARecordWithRawIdentifiers> for Vec<ARecordWithRawIdentifiers>
Source§fn read_from_row_group(
&mut self,
row_group_reader: &mut dyn RowGroupReader,
num_records: usize,
) -> Result<(), ParquetError>
fn read_from_row_group( &mut self, row_group_reader: &mut dyn RowGroupReader, num_records: usize, ) -> Result<(), ParquetError>
Read up to
num_records records from row_group_reader into self.Source§impl RecordWriter<ARecordWithRawIdentifiers> for &[ARecordWithRawIdentifiers]
impl RecordWriter<ARecordWithRawIdentifiers> for &[ARecordWithRawIdentifiers]
Source§fn write_to_row_group<W: Write + Send>(
&self,
row_group_writer: &mut SerializedRowGroupWriter<'_, W>,
) -> Result<(), ParquetError>
fn write_to_row_group<W: Write + Send>( &self, row_group_writer: &mut SerializedRowGroupWriter<'_, W>, ) -> Result<(), ParquetError>
Writes from
self into row_group_writer.impl StructuralPartialEq for ARecordWithRawIdentifiers
Auto Trait Implementations§
impl Freeze for ARecordWithRawIdentifiers
impl RefUnwindSafe for ARecordWithRawIdentifiers
impl Send for ARecordWithRawIdentifiers
impl Sync for ARecordWithRawIdentifiers
impl Unpin for ARecordWithRawIdentifiers
impl UnsafeUnpin for ARecordWithRawIdentifiers
impl UnwindSafe for ARecordWithRawIdentifiers
Blanket Implementations§
impl<T> Allocation for T
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