Enum hdbconnect::ParameterBinding[][src]

pub enum ParameterBinding {
    Optional,
    Mandatory,
    HasDefault,
}

Describes whether a parameter is Nullable or not or if it has a default value.

Variants

Parameter is nullable (can be set to NULL).

Parameter is not nullable (must not be set to NULL).

Parameter has a defined DEFAULT value.

Trait Implementations

impl Clone for ParameterBinding
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ParameterBinding
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ParameterBinding
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations