struct GenderRow {
rec_id: u32,
gender: String,
}
Fields§
§rec_id: u32
§gender: String
Trait Implementations§
source§impl FrameBuilder<GenderRow> for GenderRowFrameBuilder
impl FrameBuilder<GenderRow> for GenderRowFrameBuilder
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: GenderRow)
fn append_row(&mut self, row: GenderRow)
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, GenderRow> for GenderRowFrame<'a>
impl<'a> FrameStruct<'a, GenderRow> for GenderRowFrame<'a>
Auto Trait Implementations§
impl RefUnwindSafe for GenderRow
impl Send for GenderRow
impl Sync for GenderRow
impl Unpin for GenderRow
impl UnwindSafe for GenderRow
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