Struct bookdata::marc::book_fields::AuthRec
source · struct AuthRec {
rec_id: u32,
author_name: String,
}
Expand description
Structure recording a record’s author field.
Fields§
§rec_id: u32
Trait Implementations§
source§impl FrameBuilder<AuthRec> for AuthRecFrameBuilder
impl FrameBuilder<AuthRec> for AuthRecFrameBuilder
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: AuthRec)
fn append_row(&mut self, row: AuthRec)
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, AuthRec> for AuthRecFrame<'a>
impl<'a> FrameStruct<'a, AuthRec> for AuthRecFrame<'a>
Auto Trait Implementations§
impl RefUnwindSafe for AuthRec
impl Send for AuthRec
impl Sync for AuthRec
impl Unpin for AuthRec
impl UnwindSafe for AuthRec
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