Struct hdbconnect::Row [] [src]

pub struct Row { /* fields omitted */ }

A generic implementation of a single line of a ResultSet.

Methods

impl Row
[src]

[src]

Factory for row.

[src]

Returns the length of the row.

[src]

Returns true if the row contains no value.

[src]

Removes and returns the last value.

[src]

Returns the name of the i'th column

[src]

Reverses the order of the values

[src]

Returns a clone of the ith value.

[src]

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

[src]

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

[src]

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

[src]

Swaps out a field and converts it into a CLOB.

[src]

Swaps out a field and converts it into a BLOB.

[src]

Converts the Row into a rust value.

Trait Implementations

impl Clone for Row
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Row
[src]

[src]

Formats the value using the given formatter.

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

impl Display for Row
[src]

[src]

Formats the value using the given formatter. Read more