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

pub struct Rows { /* fields omitted */ }

The resulting rows of a query.

Methods

impl Rows
[src]

[src]

Returns a slice describing the columns of the Rows.

[src]

Returns the number of rows present.

[src]

Determines if there are any rows present.

[src]

Returns a specific Row.

Panics

Panics if idx is out of bounds.

[src]

Returns an iterator over the Rows.

Trait Implementations

impl Debug for Rows
[src]

[src]

Formats the value using the given formatter.

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

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more