Struct bookdata::goodreads::book::BookSeriesRecord
source · pub struct BookSeriesRecord {
pub book_id: i32,
pub series: String,
}
Expand description
book series linking records
Fields§
§book_id: i32
§series: String
Trait Implementations§
source§impl FrameBuilder<BookSeriesRecord> for BookSeriesRecordFrameBuilder
impl FrameBuilder<BookSeriesRecord> for BookSeriesRecordFrameBuilder
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: BookSeriesRecord)
fn append_row(&mut self, row: BookSeriesRecord)
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, BookSeriesRecord> for BookSeriesRecordFrame<'a>
impl<'a> FrameStruct<'a, BookSeriesRecord> for BookSeriesRecordFrame<'a>
source§impl TableRow for BookSeriesRecord
impl TableRow for BookSeriesRecord
§type Frame<'a> = BookSeriesRecordFrame<'a>
type Frame<'a> = BookSeriesRecordFrame<'a>
The frame struct for this row type.
§type Builder = BookSeriesRecordFrameBuilder
type Builder = BookSeriesRecordFrameBuilder
The frame builder type for this row type.
Auto Trait Implementations§
impl RefUnwindSafe for BookSeriesRecord
impl Send for BookSeriesRecord
impl Sync for BookSeriesRecord
impl Unpin for BookSeriesRecord
impl UnwindSafe for BookSeriesRecord
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