pub struct AuthorRec {
pub id: i32,
pub key: String,
pub name: Option<String>,
}
Expand description
An author record in the extracted Parquet.
Fields§
§id: i32
§key: String
§name: Option<String>
Trait Implementations§
source§impl FrameBuilder<AuthorRec> for AuthorRecFrameBuilder
impl FrameBuilder<AuthorRec> for AuthorRecFrameBuilder
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: AuthorRec)
fn append_row(&mut self, row: AuthorRec)
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, AuthorRec> for AuthorRecFrame<'a>
impl<'a> FrameStruct<'a, AuthorRec> for AuthorRecFrame<'a>
Auto Trait Implementations§
impl RefUnwindSafe for AuthorRec
impl Send for AuthorRec
impl Sync for AuthorRec
impl Unpin for AuthorRec
impl UnwindSafe for AuthorRec
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