Struct hdbconnect::Row[][src]

pub struct Row { /* fields omitted */ }

A generic implementation of a single line of a ResultSet.

Methods

impl Row
[src]

Factory for row.

Returns the length of the row.

Returns true if the row contains no value.

Removes and returns the last value.

Returns the name of the i'th column

Reverses the order of the values

Returns a clone of the ith value.

Pops and converts the last field into a plain rust value.

Swaps out a field and converts it into a plain rust value.

Swaps out a field and converts it into an Option of a plain rust value.

Swaps out a field and converts it into a CLOB.

Swaps out a field and converts it into a CLOB.

Swaps out a field and converts it into a BLob.

Converts the Row into a rust value.

Trait Implementations

impl Clone for Row
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Row
[src]

Formats the value using the given formatter. Read more

impl IntoIterator for Row
[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

impl Display for Row
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Row

impl !Sync for Row