Enum hdbconnect::HdbReturnValue [] [src]

pub enum HdbReturnValue {
    ResultSet(ResultSet),
    AffectedRows(Vec<usize>),
    OutputParameters(OutputParameters),
    Success,
}

An enum that describes a single database return value.

Variants

A resultset of a query.

A list of numbers of affected rows.

Values of output parameters of a procedure call.

Indication that a db call was successful.

Trait Implementations

impl Debug for HdbReturnValue
[src]

[src]

Formats the value using the given formatter.

impl Display for HdbReturnValue
[src]

[src]

Formats the value using the given formatter. Read more