pub struct LinkRec {
pub edition: i32,
pub work: i32,
}
Expand description
Link between edition and work.
Fields§
§edition: i32
§work: i32
Trait Implementations§
source§impl FrameBuilder<LinkRec> for LinkRecFrameBuilder
impl FrameBuilder<LinkRec> for LinkRecFrameBuilder
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: LinkRec)
fn append_row(&mut self, row: LinkRec)
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, LinkRec> for LinkRecFrame<'a>
impl<'a> FrameStruct<'a, LinkRec> for LinkRecFrame<'a>
Auto Trait Implementations§
impl RefUnwindSafe for LinkRec
impl Send for LinkRec
impl Sync for LinkRec
impl Unpin for LinkRec
impl UnwindSafe for LinkRec
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