Struct bookdata::interactions::actions::TimelessActionRecord
source · pub struct TimelessActionRecord {
pub user: i32,
pub item: i32,
pub nactions: i32,
}
Expand description
Record for a single output action without time.
Fields§
§user: i32
§item: i32
§nactions: i32
Trait Implementations§
source§impl Debug for TimelessActionRecord
impl Debug for TimelessActionRecord
source§impl FrameBuilder<TimelessActionRecord> for TimelessActionRecordFrameBuilder
impl FrameBuilder<TimelessActionRecord> for TimelessActionRecordFrameBuilder
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: TimelessActionRecord)
fn append_row(&mut self, row: TimelessActionRecord)
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.
source§impl<'a> FrameStruct<'a, TimelessActionRecord> for TimelessActionRecordFrame<'a>
impl<'a> FrameStruct<'a, TimelessActionRecord> for TimelessActionRecordFrame<'a>
source§impl FromActionSet for TimelessActionRecord
impl FromActionSet for TimelessActionRecord
source§impl TableRow for TimelessActionRecord
impl TableRow for TimelessActionRecord
§type Frame<'a> = TimelessActionRecordFrame<'a>
type Frame<'a> = TimelessActionRecordFrame<'a>
The frame struct for this row type.
§type Builder = TimelessActionRecordFrameBuilder
type Builder = TimelessActionRecordFrameBuilder
The frame builder type for this row type.
Auto Trait Implementations§
impl RefUnwindSafe for TimelessActionRecord
impl Send for TimelessActionRecord
impl Sync for TimelessActionRecord
impl Unpin for TimelessActionRecord
impl UnwindSafe for TimelessActionRecord
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