Struct mysql_async::Row [] [src]

pub struct Row { /* fields omitted */ }

Row of a result set.

Row could be indexed by numeric column index or by column name.

Methods

impl Row
[src]

Returns length of a row.

Returns reference to the value of a column with index index if it exists and wasn't taken by Row::take method.

Non panicking version of row[usize].

Will copy value at index index if it was not taken by Row::take earlier, then will convert it to T.

Will take value of a column with index index if it exists and wasn't taken earlier then will converts it to T.

Unwraps values of a row.

Panics

Panics if any of columns was taken by take method.

Trait Implementations

impl FromRow for Row
[src]

impl Clone for Row
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Row
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for Row
[src]

Formats the value using the given formatter.

impl Index<usize> for Row
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl<'a> Index<&'a str> for Row
[src]

The returned type after indexing

The method for the indexing (container[index]) operation