Struct cdrs::frame::frame_result::BodyResResultRows [] [src]

pub struct BodyResResultRows {
    pub metadata: RowsMetadata,
    pub rows_count: CInt,
    pub rows_content: Vec<Vec<CBytes>>,
}

Structure that represents result of type rows.

Fields

Rows metadata

Number of rows.

From spec: it is composed of rows_count of rows.

Methods

impl BodyResResultRows
[src]

Returns a list of tuples (CBytes, ColType) with value and type of values respectively. n is a number of row.

Trait Implementations

impl Debug for BodyResResultRows
[src]

Formats the value using the given formatter.

impl FromCursor for BodyResResultRows
[src]

It should return an implementor from an io::Cursor over an array of bytes.