Struct hdbconnect::HdbResponse[][src]

pub struct HdbResponse(_);

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

Methods

impl HdbResponse
[src]

Turns itself into a single resultset.

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

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.

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.

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

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

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

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

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

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

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

Trait Implementations

impl Debug for HdbResponse
[src]

Formats the value using the given formatter. Read more

impl Display for HdbResponse
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for HdbResponse

impl !Sync for HdbResponse