Struct bookdata::amazon::ReviewRowFrameBuilder
source · pub struct ReviewRowFrameBuilder {
user: <i32 as ColType>::Builder,
asin: <String as ColType>::Builder,
rating: <f32 as ColType>::Builder,
timestamp: <i64 as ColType>::Builder,
summary: <String as ColType>::Builder,
text: <String as ColType>::Builder,
}
Fields§
§user: <i32 as ColType>::Builder
§asin: <String as ColType>::Builder
§rating: <f32 as ColType>::Builder
§timestamp: <i64 as ColType>::Builder
§summary: <String as ColType>::Builder
§text: <String as ColType>::Builder
Trait Implementations§
source§impl FrameBuilder<ReviewRow> for ReviewRowFrameBuilder
impl FrameBuilder<ReviewRow> for ReviewRowFrameBuilder
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: ReviewRow)
fn append_row(&mut self, row: ReviewRow)
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 ReviewRowFrameBuilder
impl Send for ReviewRowFrameBuilder
impl Sync for ReviewRowFrameBuilder
impl Unpin for ReviewRowFrameBuilder
impl UnwindSafe for ReviewRowFrameBuilder
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