pub struct TimestampActionRecordFrameBuilder {
user: <i32 as ColType>::Builder,
item: <i32 as ColType>::Builder,
first_time: <i64 as ColType>::Builder,
last_time: <i64 as ColType>::Builder,
last_rating: <Option<f32> as ColType>::Builder,
nactions: <i32 as ColType>::Builder,
}
Fields§
§user: <i32 as ColType>::Builder
§item: <i32 as ColType>::Builder
§first_time: <i64 as ColType>::Builder
§last_time: <i64 as ColType>::Builder
§last_rating: <Option<f32> as ColType>::Builder
§nactions: <i32 as ColType>::Builder
Trait Implementations§
source§impl FrameBuilder<TimestampActionRecord> for TimestampActionRecordFrameBuilder
impl FrameBuilder<TimestampActionRecord> for TimestampActionRecordFrameBuilder
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: TimestampActionRecord)
fn append_row(&mut self, row: TimestampActionRecord)
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 TimestampActionRecordFrameBuilder
impl Send for TimestampActionRecordFrameBuilder
impl Sync for TimestampActionRecordFrameBuilder
impl Unpin for TimestampActionRecordFrameBuilder
impl UnwindSafe for TimestampActionRecordFrameBuilder
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