pub struct Row { /* fields omitted */ }
Expand description
A row of data returned from the database by a query.
Returns information about the columns of data in the row.
Determines if the row contains no values.
Returns the number of values in the row.
Deserializes a value from the row.
The value can be specified either by its numeric index in the row, or by its column name.
Panics if the index is out of bounds or if the value cannot be converted to the specified type.
Like Row::get
, but returns a Result
rather than panicking.
Formats the value using the given formatter. Read more
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.
impl<V, T> VZip<V> for T where
V: MultiLane<T>,