Struct msi::Row [] [src]

pub struct Row { /* fields omitted */ }

One row from a database table.

Methods

impl Row
[src]

Returns the number of values in the row.

Returns the list of columns in this row.

Returns true if this row has a column with the given name.

Trait Implementations

impl Clone for Row
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Index<usize> for Row
[src]

Gets the value of the column with the given index. Panics if index >= self.len().

The returned type after indexing

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

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

Gets the value of the column with the given name. Panics if !self.has_column(column_name).

The returned type after indexing

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