Struct hdbconnect::ResultSetMetadata[][src]

pub struct ResultSetMetadata { /* fields omitted */ }

Metadata for the fields in a result set.

Methods

impl ResultSetMetadata
[src]

Returns the number of fields.

Returns true if the set of fields is empty.

Database schema of the i'th column in the resultset.

Database table of the i'th column in the resultset.

Name of the i'th column in the resultset.

Display name of the column.

True if column can contain NULL values.

Returns true if the column has a default value.

Returns true if the column is readonly.

Returns true if the column is auto-incremented.

Returns true if the column is of array type.

Returns the id of the value type. See module hdbconnect::metadata::type_id.

Scale length (for some numeric types only).

Precision (for some numeric types only).

Trait Implementations

impl Clone for ResultSetMetadata
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ResultSetMetadata
[src]

Formats the value using the given formatter. Read more

impl Display for ResultSetMetadata
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations