pub(crate) struct APartiallyOptionalRecord {
pub bool: bool,
pub string: String,
pub i16: Option<i16>,
pub i32: Option<i32>,
pub u64: Option<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: Option<i16>
§i32: Option<i32>
§u64: Option<u64>
§isize: isize
§float: f32
§double: f64
§now: NaiveDateTime
§date: NaiveDate
§uuid: Uuid
§byte_vec: Vec<u8>
Trait Implementations§
Source§impl Debug for APartiallyOptionalRecord
impl Debug for APartiallyOptionalRecord
Source§impl PartialEq for APartiallyOptionalRecord
impl PartialEq for APartiallyOptionalRecord
Source§impl RecordWriter<APartiallyOptionalRecord> for &[APartiallyOptionalRecord]
impl RecordWriter<APartiallyOptionalRecord> for &[APartiallyOptionalRecord]
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 APartiallyOptionalRecord
Auto Trait Implementations§
impl Freeze for APartiallyOptionalRecord
impl RefUnwindSafe for APartiallyOptionalRecord
impl Send for APartiallyOptionalRecord
impl Sync for APartiallyOptionalRecord
impl Unpin for APartiallyOptionalRecord
impl UnwindSafe for APartiallyOptionalRecord
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