Struct bookdata::goodreads::work::WorkRecordFrameBuilder
source · pub struct WorkRecordFrameBuilder {
work_id: <i32 as ColType>::Builder,
title: <Option<String> as ColType>::Builder,
pub_year: <Option<i16> as ColType>::Builder,
pub_month: <Option<u8> as ColType>::Builder,
}
Fields§
§work_id: <i32 as ColType>::Builder
§title: <Option<String> as ColType>::Builder
§pub_year: <Option<i16> as ColType>::Builder
§pub_month: <Option<u8> as ColType>::Builder
Trait Implementations§
source§impl FrameBuilder<WorkRecord> for WorkRecordFrameBuilder
impl FrameBuilder<WorkRecord> for WorkRecordFrameBuilder
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: WorkRecord)
fn append_row(&mut self, row: WorkRecord)
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.
Auto Trait Implementations§
impl RefUnwindSafe for WorkRecordFrameBuilder
impl Send for WorkRecordFrameBuilder
impl Sync for WorkRecordFrameBuilder
impl Unpin for WorkRecordFrameBuilder
impl UnwindSafe for WorkRecordFrameBuilder
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