[][src]Struct hdbconnect::Row

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]

Performs copy-assignment from source. Read more

impl IntoIterator for Row
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

impl Debug for Row
[src]

impl Display for Row
[src]

Auto Trait Implementations

impl Send for Row

impl !Sync for Row

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self