pub struct RowView<'a> { /* private fields */ }Expand description
A borrowed view of one row, addressable by column name.
Sampling reads at most a couple of columns per row, so this scans the header
slice rather than building a map — allocating a HashMap per row would cost
far more than the lookup it saves.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for RowView<'a>
impl<'a> RefUnwindSafe for RowView<'a>
impl<'a> Send for RowView<'a>
impl<'a> Sync for RowView<'a>
impl<'a> Unpin for RowView<'a>
impl<'a> UnsafeUnpin for RowView<'a>
impl<'a> UnwindSafe for RowView<'a>
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