Struct tiberius::QueryResult [] [src]

pub struct QueryResult<'a> {
    // some fields omitted
}

The resultset of a query (containing the resulting rows)

Methods

impl<'a> QueryResult<'a>
[src]

fn len(&self) -> usize

return the number of contained rows

fn get(&self, idx: usize) -> &Row

return the row on a specific index, panics if the idx is out of bounds

Trait Implementations

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

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl<'a> IntoIterator for QueryResult<'a>
[src]

type Item = Row<'a>

The type of the elements being iterated over.

type IntoIter = IntoIter<Row<'a>>

Which kind of iterator are we turning this into?

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more