Struct bookdata::goodreads::author::AuthorRecord
source · pub struct AuthorRecord {
pub author_id: i32,
pub name: Option<String>,
}
Expand description
Rows in the processed work Parquet table.
Fields§
§name: Option<String>
Trait Implementations§
source§impl FrameBuilder<AuthorRecord> for AuthorRecordFrameBuilder
impl FrameBuilder<AuthorRecord> for AuthorRecordFrameBuilder
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: AuthorRecord)
fn append_row(&mut self, row: AuthorRecord)
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, AuthorRecord> for AuthorRecordFrame<'a>
impl<'a> FrameStruct<'a, AuthorRecord> for AuthorRecordFrame<'a>
source§impl TableRow for AuthorRecord
impl TableRow for AuthorRecord
§type Frame<'a> = AuthorRecordFrame<'a>
type Frame<'a> = AuthorRecordFrame<'a>
The frame struct for this row type.
§type Builder = AuthorRecordFrameBuilder
type Builder = AuthorRecordFrameBuilder
The frame builder type for this row type.
Auto Trait Implementations§
impl RefUnwindSafe for AuthorRecord
impl Send for AuthorRecord
impl Sync for AuthorRecord
impl Unpin for AuthorRecord
impl UnwindSafe for AuthorRecord
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