pub struct Row<'r, 's, 'c, S, C: Configuration> {
pub schema: &'r [ColumnType],
pub configuration: &'s C,
/* private fields */
}
Expand description
Represents SQL table row of Column
objects.
Fields§
§schema: &'r [ColumnType]
Schema information about this row
configuration: &'s C
Data access configuration
Implementations§
Source§impl<'r, 's, 'c, S, C: Configuration> Row<'r, 's, 'c, S, C>
impl<'r, 's, 'c, S, C: Configuration> Row<'r, 's, 'c, S, C>
Trait Implementations§
Auto Trait Implementations§
impl<'r, 's, 'c, S, C> Freeze for Row<'r, 's, 'c, S, C>
impl<'r, 's, 'c, S, C> RefUnwindSafe for Row<'r, 's, 'c, S, C>where
C: RefUnwindSafe,
S: RefUnwindSafe,
impl<'r, 's, 'c, S, C> !Send for Row<'r, 's, 'c, S, C>
impl<'r, 's, 'c, S, C> !Sync for Row<'r, 's, 'c, S, C>
impl<'r, 's, 'c, S, C> Unpin for Row<'r, 's, 'c, S, C>
impl<'r, 's, 'c, S, C> !UnwindSafe for Row<'r, 's, 'c, S, C>
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