pub struct WorkSubjectRec {
pub id: u32,
pub subj_type: u8,
pub subject: String,
}
Expand description
Work-subject record in extracted Parquet.
Fields§
§id: u32
§subj_type: u8
§subject: String
Trait Implementations§
Source§impl Clone for WorkSubjectRec
impl Clone for WorkSubjectRec
Source§fn clone(&self) -> WorkSubjectRec
fn clone(&self) -> WorkSubjectRec
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for WorkSubjectRec
impl Debug for WorkSubjectRec
Source§impl From<SubjectEntry> for WorkSubjectRec
impl From<SubjectEntry> for WorkSubjectRec
Source§fn from(value: SubjectEntry) -> Self
fn from(value: SubjectEntry) -> Self
Converts to this type from the input type.
Source§impl RecordWriter<WorkSubjectRec> for &[WorkSubjectRec]
impl RecordWriter<WorkSubjectRec> for &[WorkSubjectRec]
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
.Auto Trait Implementations§
impl Freeze for WorkSubjectRec
impl RefUnwindSafe for WorkSubjectRec
impl Send for WorkSubjectRec
impl Sync for WorkSubjectRec
impl Unpin for WorkSubjectRec
impl UnwindSafe for WorkSubjectRec
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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