Struct postgres::rows::Rows
[−]
[src]
pub struct Rows { /* fields omitted */ }
The resulting rows of a query.
Methods
impl Rows
[src]
fn columns(&self) -> &[Column]
[src]
Returns a slice describing the columns of the Rows
.
fn len(&self) -> usize
[src]
Returns the number of rows present.
fn is_empty(&self) -> bool
[src]
Determines if there are any rows present.
fn get<'a>(&'a self, idx: usize) -> Row<'a>
[src]
fn iter<'a>(&'a self) -> Iter<'a>
[src]
Returns an iterator over the Row
s.