Struct bookdata::cli::index_names::IndexEntry
source · struct IndexEntry {
rec_id: u32,
name: String,
}
Fields§
§rec_id: u32
§name: String
Trait Implementations§
source§impl Clone for IndexEntry
impl Clone for IndexEntry
source§fn clone(&self) -> IndexEntry
fn clone(&self) -> IndexEntry
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl FrameBuilder<IndexEntry> for IndexEntryFrameBuilder
impl FrameBuilder<IndexEntry> for IndexEntryFrameBuilder
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: IndexEntry)
fn append_row(&mut self, row: IndexEntry)
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, IndexEntry> for IndexEntryFrame<'a>
impl<'a> FrameStruct<'a, IndexEntry> for IndexEntryFrame<'a>
source§impl Serialize for IndexEntry
impl Serialize for IndexEntry
source§impl TableRow for IndexEntry
impl TableRow for IndexEntry
§type Frame<'a> = IndexEntryFrame<'a>
type Frame<'a> = IndexEntryFrame<'a>
The frame struct for this row type.
§type Builder = IndexEntryFrameBuilder
type Builder = IndexEntryFrameBuilder
The frame builder type for this row type.
Auto Trait Implementations§
impl RefUnwindSafe for IndexEntry
impl Send for IndexEntry
impl Sync for IndexEntry
impl Unpin for IndexEntry
impl UnwindSafe for IndexEntry
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