pub struct RawRow(/* private fields */);Expand description
A row of text values from a raw (unvalidated) SQL query.
All values are strings — PostgreSQL’s simple query protocol returns
everything as text. Use get to access columns by index.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RawRow
impl RefUnwindSafe for RawRow
impl Send for RawRow
impl Sync for RawRow
impl Unpin for RawRow
impl UnsafeUnpin for RawRow
impl UnwindSafe for RawRow
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