Struct mysql_async::ResultSet [] [src]

pub struct ResultSet<T, Q>(pub Vec<T>, _);

Result set of a query or statement execution.

It represents query result which has been collected. It could be dereferenced into it's query result to get access to QueryResult methods.

Methods

impl<T, Q: QueryResult> ResultSet<T, Q>
[src]

Trait Implementations

impl<T, Q: QueryResult> Deref for ResultSet<T, Q>
[src]

The resulting type after dereferencing

The method called to dereference a value

impl<T, Q: QueryResult> IntoIterator for ResultSet<T, Q>
[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