Struct bookdata::goodreads::review::ReviewRecordFrameBuilder
source · pub struct ReviewRecordFrameBuilder {
rec_id: <u32 as ColType>::Builder,
review_id: <i64 as ColType>::Builder,
user_id: <i32 as ColType>::Builder,
book_id: <i32 as ColType>::Builder,
work_id: <Option<i32> as ColType>::Builder,
cluster: <i32 as ColType>::Builder,
rating: <Option<f32> as ColType>::Builder,
review: <String as ColType>::Builder,
n_votes: <i32 as ColType>::Builder,
added: <f32 as ColType>::Builder,
updated: <f32 as ColType>::Builder,
}
Fields§
§rec_id: <u32 as ColType>::Builder
§review_id: <i64 as ColType>::Builder
§user_id: <i32 as ColType>::Builder
§book_id: <i32 as ColType>::Builder
§work_id: <Option<i32> as ColType>::Builder
§cluster: <i32 as ColType>::Builder
§rating: <Option<f32> as ColType>::Builder
§review: <String as ColType>::Builder
§n_votes: <i32 as ColType>::Builder
§added: <f32 as ColType>::Builder
§updated: <f32 as ColType>::Builder
Trait Implementations§
source§impl FrameBuilder<ReviewRecord> for ReviewRecordFrameBuilder
impl FrameBuilder<ReviewRecord> for ReviewRecordFrameBuilder
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: ReviewRecord)
fn append_row(&mut self, row: ReviewRecord)
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 ReviewRecordFrameBuilder
impl Send for ReviewRecordFrameBuilder
impl Sync for ReviewRecordFrameBuilder
impl Unpin for ReviewRecordFrameBuilder
impl UnwindSafe for ReviewRecordFrameBuilder
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