pub(crate) struct APrunedRecord {
pub bool: bool,
pub string: String,
pub byte_vec: Vec<u8>,
pub float: f32,
pub double: f64,
pub i16: i16,
pub i32: i32,
pub u64: u64,
pub isize: isize,
}
Fields§
§bool: bool
§string: String
§byte_vec: Vec<u8>
§float: f32
§double: f64
§i16: i16
§i32: i32
§u64: u64
§isize: isize
Trait Implementations§
Source§impl Debug for APrunedRecord
impl Debug for APrunedRecord
Source§impl PartialEq for APrunedRecord
impl PartialEq for APrunedRecord
Source§impl RecordReader<APrunedRecord> for Vec<APrunedRecord>
impl RecordReader<APrunedRecord> for Vec<APrunedRecord>
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
.impl StructuralPartialEq for APrunedRecord
Auto Trait Implementations§
impl Freeze for APrunedRecord
impl RefUnwindSafe for APrunedRecord
impl Send for APrunedRecord
impl Sync for APrunedRecord
impl Unpin for APrunedRecord
impl UnwindSafe for APrunedRecord
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