Struct postgres::rows::Rows [] [src]

pub struct Rows<'stmt> { /* fields omitted */ }

The resulting rows of a query.

Methods

impl<'stmt> Rows<'stmt>
[src]

Returns a slice describing the columns of the Rows.

Returns the number of rows present.

Determines if there are any rows present.

Returns a specific Row.

Panics

Panics if idx is out of bounds.

Returns an iterator over the Rows.

Trait Implementations

impl<'a> Debug for Rows<'a>
[src]

Formats the value using the given formatter.

impl<'a> IntoIterator for &'a Rows<'a>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more