Struct bookdata::goodreads::book::BookIdRecordFrameBuilder
source · pub struct BookIdRecordFrameBuilder {
book_id: <i32 as ColType>::Builder,
work_id: <Option<i32> as ColType>::Builder,
gr_item: <i32 as ColType>::Builder,
isbn10: <Option<String> as ColType>::Builder,
isbn13: <Option<String> as ColType>::Builder,
asin: <Option<String> as ColType>::Builder,
}
Fields§
§book_id: <i32 as ColType>::Builder
§work_id: <Option<i32> as ColType>::Builder
§gr_item: <i32 as ColType>::Builder
§isbn10: <Option<String> as ColType>::Builder
§isbn13: <Option<String> as ColType>::Builder
§asin: <Option<String> as ColType>::Builder
Trait Implementations§
source§impl FrameBuilder<BookIdRecord> for BookIdRecordFrameBuilder
impl FrameBuilder<BookIdRecord> for BookIdRecordFrameBuilder
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: BookIdRecord)
fn append_row(&mut self, row: BookIdRecord)
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 BookIdRecordFrameBuilder
impl Send for BookIdRecordFrameBuilder
impl Sync for BookIdRecordFrameBuilder
impl Unpin for BookIdRecordFrameBuilder
impl UnwindSafe for BookIdRecordFrameBuilder
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