Struct rustorm_dao::Rows [] [src]

pub struct Rows {
    pub columns: Vec<String>,
    pub data: Vec<Vec<Value>>,
}

use this to store data retrieved from the database This is also slimmer than Vec when serialized

Fields

Methods

impl Rows
[src]

[src]

[src]

[src]

Returns an iterator over the Rows.

Trait Implementations

impl Debug for Rows
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Rows
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

Auto Trait Implementations

impl Send for Rows

impl Sync for Rows