Struct hdbconnect::HdbResponse [] [src]

pub struct HdbResponse(_);

Represents all possible non-error responses to a database command.

Methods

impl HdbResponse
[src]

[src]

Turns itself into a single resultset.

If this cannot be done without loss of information, an error is returned.

[src]

Turns itself into a Vector of numbers (each number representing a number of affected rows).

If this cannot be done without loss of information, an error is returned.

[src]

Turns itself into a Vector of numbers (each number representing a number of affected rows).

If this cannot be done without loss of information, an error is returned.

[src]

Turns itself into (), if the statement had returned successfully.

If this cannot be done without loss of information, an error is returned.

[src]

Turns itself into a single return value, if there is one any only one.

[src]

Returns () if a successful execution was signaled by the database explicitly, or an error otherwise.

[src]

Returns the next ResultSet, or an error if there is none.

[src]

Returns the next set of affected rows counters, or an error if there is none.

[src]

Returns the next OutputParameters, or an error if there is none.

Trait Implementations

impl Debug for HdbResponse
[src]

[src]

Formats the value using the given formatter.

impl Display for HdbResponse
[src]

[src]

Formats the value using the given formatter. Read more