Struct bookdata::openlib::author::AuthorNameRec
source · pub struct AuthorNameRec {
pub id: i32,
pub source: u8,
pub name: String,
}
Expand description
An author-name record in the extracted Parquet.
Fields§
§id: i32
§source: u8
§name: String
Trait Implementations§
source§impl FrameBuilder<AuthorNameRec> for AuthorNameRecFrameBuilder
impl FrameBuilder<AuthorNameRec> for AuthorNameRecFrameBuilder
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: AuthorNameRec)
fn append_row(&mut self, row: AuthorNameRec)
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, AuthorNameRec> for AuthorNameRecFrame<'a>
impl<'a> FrameStruct<'a, AuthorNameRec> for AuthorNameRecFrame<'a>
source§impl TableRow for AuthorNameRec
impl TableRow for AuthorNameRec
§type Frame<'a> = AuthorNameRecFrame<'a>
type Frame<'a> = AuthorNameRecFrame<'a>
The frame struct for this row type.
§type Builder = AuthorNameRecFrameBuilder
type Builder = AuthorNameRecFrameBuilder
The frame builder type for this row type.
Auto Trait Implementations§
impl RefUnwindSafe for AuthorNameRec
impl Send for AuthorNameRec
impl Sync for AuthorNameRec
impl Unpin for AuthorNameRec
impl UnwindSafe for AuthorNameRec
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