pub(crate) struct APartiallyCompleteRecord {
pub bool: bool,
pub string: String,
pub i16: i16,
pub i32: i32,
pub u64: u64,
pub isize: isize,
pub float: f32,
pub double: f64,
pub now: NaiveDateTime,
pub date: NaiveDate,
pub uuid: Uuid,
pub byte_vec: Vec<u8>,
}
Fields§
§bool: bool
§string: String
§i16: i16
§i32: i32
§u64: u64
§isize: isize
§float: f32
§double: f64
§now: NaiveDateTime
§date: NaiveDate
§uuid: Uuid
§byte_vec: Vec<u8>
Trait Implementations§
Source§impl Debug for APartiallyCompleteRecord
impl Debug for APartiallyCompleteRecord
Source§impl PartialEq for APartiallyCompleteRecord
impl PartialEq for APartiallyCompleteRecord
Source§impl RecordReader<APartiallyCompleteRecord> for Vec<APartiallyCompleteRecord>
impl RecordReader<APartiallyCompleteRecord> for Vec<APartiallyCompleteRecord>
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<APartiallyCompleteRecord> for &[APartiallyCompleteRecord]
impl RecordWriter<APartiallyCompleteRecord> for &[APartiallyCompleteRecord]
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 APartiallyCompleteRecord
Auto Trait Implementations§
impl Freeze for APartiallyCompleteRecord
impl RefUnwindSafe for APartiallyCompleteRecord
impl Send for APartiallyCompleteRecord
impl Sync for APartiallyCompleteRecord
impl Unpin for APartiallyCompleteRecord
impl UnwindSafe for APartiallyCompleteRecord
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more