pub struct WorkRec {
pub id: i32,
pub key: String,
pub title: Option<String>,
}
Expand description
Work row in extracted Parquet.
Fields§
§id: i32
§key: String
§title: Option<String>
Trait Implementations§
source§impl FrameBuilder<WorkRec> for WorkRecFrameBuilder
impl FrameBuilder<WorkRec> for WorkRecFrameBuilder
source§fn with_capacity(cap: usize) -> Self
fn with_capacity(cap: usize) -> Self
Instantiate a frame builder with a specified capacity.
source§fn append_row(&mut self, row: WorkRec)
fn append_row(&mut self, row: WorkRec)
Add a row to the frame builder.
source§fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = R>,
fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = R>,
Add an iterable of items to the frame.
source§impl<'a> FrameStruct<'a, WorkRec> for WorkRecFrame<'a>
impl<'a> FrameStruct<'a, WorkRec> for WorkRecFrame<'a>
Auto Trait Implementations§
impl RefUnwindSafe for WorkRec
impl Send for WorkRec
impl Sync for WorkRec
impl Unpin for WorkRec
impl UnwindSafe for WorkRec
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