Struct hdbconnect::ParameterDescriptor[][src]

pub struct ParameterDescriptor { /* fields omitted */ }

Metadata for a parameter.

Methods

impl ParameterDescriptor
[src]

Describes whether a parameter can be NULL or not, or if it has a default value.

Returns true if the column can contain NULL values.

Returns true if the column has a default value.

Returns true if the column is auto-incremented.

Returns true if the parameter is of array type

Returns the id of the value type of the parameter. See also module type_id.

Scale (for some numeric types only).

Precision (for some numeric types only).

Describes whether a parameter is used for input, output, or both.

Returns the name of the parameter.

Trait Implementations

impl Clone for ParameterDescriptor
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ParameterDescriptor
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations