pub struct OwnedRow {
pub columns: Vec<String>,
pub values: Vec<Value>,
}Expand description
A row detached from the Rows iterator — owns its data, no
borrow ties it to the parent iterator.
Fields§
§columns: Vec<String>§values: Vec<Value>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OwnedRow
impl RefUnwindSafe for OwnedRow
impl Send for OwnedRow
impl Sync for OwnedRow
impl Unpin for OwnedRow
impl UnsafeUnpin for OwnedRow
impl UnwindSafe for OwnedRow
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